mirror of
https://github.com/DavidGailleton/42-Piscine_Python.git
synced 2026-01-27 09:11:57 +00:00
8 lines
186 B
Python
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")
|