You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/user_docs/support/faq-kcl.md
+8-9
Original file line number
Diff line number
Diff line change
@@ -178,7 +178,7 @@ _args = ["start", *_args] # Add elements "start" to the head of the list: ["sta
178
178
data1 = [1, 2, 3]
179
179
data2 = None
180
180
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.
182
182
data5 = data1 + data2 # Error: can only concatenate list (not "NoneType") to list
183
183
```
184
184
@@ -191,7 +191,7 @@ There are two ways to modify the elements in the list:
191
191
```python
192
192
_index =1
193
193
_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"]
195
195
```
196
196
197
197
- 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
419
419
420
420
```python
421
421
done = True
422
-
col == 0
422
+
col = 0
423
423
if done and (col == 0 or col == 3):
424
424
ok = 1
425
425
```
@@ -1045,8 +1045,7 @@ import model # Error: recursively loading
1045
1045
1046
1046
## 26. When can import be omitted?
1047
1047
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:
1050
1049
```
1051
1050
.
1052
1051
└── root
@@ -1490,8 +1489,8 @@ dataSchema = Config {
1490
1489
1491
1490
- For primitive types `int`, `float`, `bool`, `str` variables are directly compared to see if their values are equal
1492
1491
- 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.
1495
1494
1496
1495
```python
1497
1496
print([1, 2] == [1, 2]) # True
@@ -2133,7 +2132,7 @@ data:
2133
2132
2134
2133
## 45. Why do we get an error when a variable is assigned an enumeration type (a literal union type)?
2135
2134
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:
2137
2136
2138
2137
```python
2139
2138
schema Data:
@@ -2512,7 +2511,7 @@ The first `"v1"` over here denotes that the type of the variable `version` is of
2512
2511
2513
2512
## 62. How to define a schema to verify the contents of a given JSON file?
2514
2513
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.
0 commit comments