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

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!")