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,10 @@
# Fonction produit
def product(x, y):
return x * y
# Tests d'appel de la fonction
print(product(10, 10))
print(product(15, -15))
print(product("hello ", 3))
print(product([1, 2, 3], 2))