Deze website werkt beter met JavaScript.
Beginscherm
Verkennen
Help
Inloggen
E2L_Ivry
/
cours-python
Volgen
5
Ster
0
Vork
0
Code
Kwesties
0
Pull-aanvragen
0
Publicaties
0
Wiki
Activiteit
Bladeren bron
Correction d'un example
master
Dimitri Merejkowsky
5 jaren geleden
bovenliggende
fc6e15c172
commit
495a8c8582
1 gewijzigde bestanden
met
toevoegingen van 1
en
1 verwijderingen
Zij-aan-zij weergave
Diff opties
Statistieken weergeven
Download Patch-bestand
Download Diff-bestand
+1
-1
saison-2/sessions/python-S02-E04.md
+ 1
- 1
saison-2/sessions/python-S02-E04.md
Bestand weergeven
@@ -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)
```