mirror of
https://github.com/DavidGailleton/42-Piscine_Python.git
synced 2026-01-27 01:01:59 +00:00
9 lines
253 B
Python
9 lines
253 B
Python
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!")
|