summaryrefslogtreecommitdiff
path: root/py00/ex6/ft_count_harvest_iterative.py
blob: 23c66576feeadeba6cd4de8b5cda8784287080b6 (plain)
1
2
3
4
5
def ft_count_harvest_iterative():
    count = int(input("Days until harvest: "))
    for i in range(1, count + 1, + 1):
        print("Days ", i)
    print("Harvest time!")