Skip to content

Commit

Permalink
Update refcard.tex
Browse files Browse the repository at this point in the history
Fix #2
  • Loading branch information
yves-chevallier authored Feb 25, 2024
1 parent 5202a39 commit 9c9f9a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion refcard.tex
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ \section*{Structures de contrôle}
for animal in ["chat", "chien", "oiseau"]:
print(f"Un {animal} est un mammifère")

for i in range(4): print(i, end=" ") # 0 1 2 3 4
for i in range(4): print(i, end=" ") # 0 1 2 3
for i in range(4, 8): print(i, end=" ") # 4 5 6 7
for i in range(0, 10, 2): print(i, end=" ") # 0 2 4 6 8

Expand Down

0 comments on commit 9c9f9a0

Please sign in to comment.