From: = <=> Date: Mon, 5 Jan 2026 13:46:39 +0000 (+0100) Subject: Small fix X-Git-Url: https://git.uwuaxy.net/sitemap.xml?a=commitdiff_plain;h=b3b6bb7700b35f68e58da718fba4c7c6d577f8e8;p=axy%2Fft%2Fpython00.git Small fix --- diff --git a/ex5/ft_count_harvest_iterative.py b/ex5/ft_count_harvest_iterative.py index 40b5560..8462464 100644 --- a/ex5/ft_count_harvest_iterative.py +++ b/ex5/ft_count_harvest_iterative.py @@ -1,5 +1,5 @@ def ft_count_harvest_iterative(): days: int = int(input("Days until harvest: ")) - for day in range(1, days): + for day in range(1, days + 1): print(f"Day {day}") print("Harvest time!")