Skip to content

Commit ae3043f

Browse files
authored
Merge pull request #496 from Sumitwarrior7/faq-corrections
FAQs corrected
2 parents b26ff83 + 7961d67 commit ae3043f

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

docs/user_docs/support/faq-kcl.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ _args = ["start", *_args] # Add elements "start" to the head of the list: ["sta
178178
data1 = [1, 2, 3]
179179
data2 = None
180180
data3 = [*data1, *data2] # Ok: [1, 2, 3]
181-
data4 = data1 + data2 or [] # OK: [1, 2, 3], We can use the `or` operator to take the default value of data2 as [], when data2 is None/Undefined, take the empty list [] for calculation.
181+
data4 = data1 + (data2 or []) # OK: [1, 2, 3], We can use the `or` operator to take the default value of data2 as [], when data2 is None/Undefined, take the empty list [] for calculation.
182182
data5 = data1 + data2 # Error: can only concatenate list (not "NoneType") to list
183183
```
184184

@@ -191,7 +191,7 @@ There are two ways to modify the elements in the list:
191191
```python
192192
_index = 1
193193
_args = ["a", "b", "c"]
194-
_args = _args[:index] + ["x"] + _args[index+1:] # Modify the element of list index 1 to "x": ["a", "x", "c"]
194+
_args = _args[:_index] + ["x"] + _args[_index+1:] # Modify the element of list index 1 to "x": ["a", "x", "c"]
195195
```
196196

197197
- Use the list comprehension to modify elements in a list
@@ -419,7 +419,7 @@ In KCL, use `and` for "logical and", use `or` for "logical or", use `not` for "n
419419

420420
```python
421421
done = True
422-
col == 0
422+
col = 0
423423
if done and (col == 0 or col == 3):
424424
ok = 1
425425
```
@@ -1045,8 +1045,7 @@ import model # Error: recursively loading
10451045

10461046
## 26. When can import be omitted?
10471047

1048-
KCL files in the same folder the not in the main package can refer to each other without importing each other. For example, for the following directory structure:
1049-
1048+
KCL files in the same folder, but not in the main package, can refer to each other without importing. For example, for the following directory structure:
10501049
```
10511050
.
10521051
└── root
@@ -1490,8 +1489,8 @@ dataSchema = Config {
14901489

14911490
- For primitive types `int`, `float`, `bool`, `str` variables are directly compared to see if their values are equal
14921491
- Variables of composite types `list`, `dict`, `schema` will deeply recursively compare their sub-elements for equality
1493-
- `list` type deep recursive recursive comparison of the value and length of each index
1494-
- `dict`/`schema` types deeply recursively compare the value of each attribute (regardless of the order in which the attributes appear)
1492+
- `list` : Perform a deep, recursive comparison of both the values and the lengths of each index.
1493+
- `dict`/`schema` : Perform a deep, recursive comparison of the values of each attribute, ignoring the order of attributes.
14951494

14961495
```python
14971496
print([1, 2] == [1, 2]) # True
@@ -2133,7 +2132,7 @@ data:
21332132
21342133
## 45. Why do we get an error when a variable is assigned an enumeration type (a literal union type)?
21352134
2136-
In KCL, a attribute defined as a literal union type is only allowed to receive a literal value or a variable of the same literal union type during assignment. For example, the following code is correct:
2135+
In KCL, an attribute defined as a literal union type is only allowed to receive a literal value or a variable of the same literal union type during assignment. For example, the following code is correct:
21372136
21382137
```python
21392138
schema Data:
@@ -2512,7 +2511,7 @@ The first `"v1"` over here denotes that the type of the variable `version` is of
25122511

25132512
## 62. How to define a schema to verify the contents of a given JSON file?
25142513

2515-
We can use the kcl `vet` tool to validate the JSON data in a given JSOn file. For example, in the below data.json file we use the KCL file(schema.k) below to validate the `age` parameter.
2514+
We can use the kcl `vet` tool to validate the JSON data in a given JSON file. For example, in the below data.json file we use the KCL file(schema.k) below to validate the `age` parameter.
25162515

25172516
data.json
25182517

0 commit comments

Comments
 (0)