Files
42-Piscine_Python/00/ex4/ft_water_reminder.py
David Gailleton 01854a4fb7 piscine 00
2025-12-18 15:39:15 +01:00

8 lines
186 B
Python

def ft_water_reminder():
print("Days since last watering:", end=" ")
x = int(input())
if x > 2:
print("Water the plants!")
else:
print("Plants are fine")