Python's For Loop Made the Counter Variable Disappear (Here's How)
With a while loop, I had to manually create a counter, check it, and update it every single time. Python's for loop handles that bookkeeping for you.
The basic syntax
for i in range(1, 11):
print(
dartionjoshi.hashnode.dev3 min read