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,7 @@
# Multiples de 3
numbers = [0, 3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45]
# Parcourir la liste et afficher les éléments pairs
for number in numbers:
if (number % 2) == 0:
print(number)