mirror of
https://github.com/DavidGailleton/42-Piscine_Python.git
synced 2026-01-27 01:01:59 +00:00
7 lines
178 B
Python
7 lines
178 B
Python
def ft_count_harvest_iterative():
|
|
print("Days until harvest:", end=" ")
|
|
i = range(1, int(input()) + 1)
|
|
for n in i:
|
|
print("Day", n)
|
|
print("Harvest time!")
|