summaryrefslogtreecommitdiff
path: root/py00/ex4/ft_plant_age.py
blob: b2d645b07e264038a28af4dbe3c5f20834543bbb (plain)
1
2
3
4
5
6
def ft_plant_age():
    age = int(input("Enter plant age in days: "))
    if age > 60:
        print("Plant is ready to harvest!")
    else:
        print("Plant needs more time to grow.")