mirror of
https://github.com/DavidGailleton/42-Piscine_Python.git
synced 2026-01-27 09:11:57 +00:00
8 lines
209 B
Python
8 lines
209 B
Python
def ft_plant_age():
|
|
print("Enter plant age in days:", end=" ")
|
|
age = int(input())
|
|
if age > 60:
|
|
print("Plant is ready to harvest!")
|
|
else:
|
|
print("Plant needs more time to grow.")
|