Initial commit

This commit is contained in:
2025-07-04 19:26:39 +02:00
commit c8682d4801
248 changed files with 12519 additions and 0 deletions

View File

@ -0,0 +1,2 @@
for number in range(10):
print(number)

View File

@ -0,0 +1,3 @@
for number in range(10):
if number % 2 == 0: # Est pair / reste 0 quand on fait la division entière
print(number)

View File

@ -0,0 +1,3 @@
for item1 in range(10):
for item2 in range(item1):
print(item1, item2)