in for loop python how to make loop start at 1 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)