質問編集履歴
1
プログラム修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,12 +8,18 @@
|
|
8
8
|
|
9
9
|
このような内包表現をどのように実装すればよいでしょうか?
|
10
10
|
|
11
|
+
ageだけは、任意のため、ない時には、キー'age'も表示させたくないです
|
12
|
+
|
11
13
|
|
12
14
|
|
13
15
|
```python
|
14
16
|
|
15
17
|
dict = {
|
16
18
|
|
19
|
+
'name' : name,
|
20
|
+
|
21
|
+
'add' : add,
|
22
|
+
|
17
23
|
'age' : age if age is not None
|
18
24
|
|
19
25
|
}
|