This website works better with JavaScript.
Home
Explore
Help
Sign In
E2L_Ivry
/
cours-python
Watch
5
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Correction d'un example
master
Dimitri Merejkowsky
5 years ago
parent
fc6e15c172
commit
495a8c8582
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
saison-2/sessions/python-S02-E04.md
+ 1
- 1
saison-2/sessions/python-S02-E04.md
View File
@@ -273,7 +273,7 @@ False
```python
scores = { "Alice": 20, "Bob": 14 }
for nom in scores:
score = scores[nom
e
]
score = scores[nom]
print(nom, "a un score de", score)
```