We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 105ffb3 commit e180677Copy full SHA for e180677
chapter06/6-12.py
@@ -8,23 +8,23 @@
8
'color': 'green',
9
'point': 5,
10
'speed': 'slow',
11
-}
+ }
12
aliens.append(alien)
13
14
alien = {
15
'name': 'B',
16
'color': 'yellow',
17
'point': 10,
18
'speed': 'med',
19
20
21
22
23
'name': 'C',
24
'color': 'red',
25
26
'speed': 'fast',
27
28
29
30
print(aliens)
@@ -33,4 +33,4 @@
33
for alien_info in aliens:
34
print("\nHere's what I know about " + alien_info['name'].title() + ":")
35
for key, value in alien_info.items():
36
- print("\t" + key + ": " + str(value))
+ print("\t" + key + ": " + str(value))
0 commit comments