diff options
| author | yctct <yctct@yctct.com> | 2026-06-07 08:59:04 +0200 |
|---|---|---|
| committer | yctct <yctct@yctct.com> | 2026-06-07 08:59:04 +0200 |
| commit | 15115b4c52bfda0d1cca9fa1155beecbb873ec35 (patch) | |
| tree | b3f0975e63eb04dcba732a78ce9bd9abda8acf01 /py00/ex4 | |
First commit, add all files
Diffstat (limited to 'py00/ex4')
| -rw-r--r-- | py00/ex4/ft_plant_age.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/py00/ex4/ft_plant_age.py b/py00/ex4/ft_plant_age.py new file mode 100644 index 0000000..b2d645b --- /dev/null +++ b/py00/ex4/ft_plant_age.py @@ -0,0 +1,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.") |
