piscine 00

This commit is contained in:
David Gailleton
2025-12-18 15:39:15 +01:00
parent 029903f8dd
commit 01854a4fb7
9 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
def ft_garden_summary():
print("Enter garden name:", end=" ")
g_name = input()
print("Enter number of plants:", end=" ")
nb_plants = input()
print("Garden:", g_name)
print("Plants:", nb_plants)
print("Status: Growing well!")