start at 1 not 0 in python loop code example
Example: for loop python start at 1
# starts at 1 up to, but not including, 5
for i in range(1, 5)
print(i)
# starts at 1 up to, but not including, 5
for i in range(1, 5)
print(i)