does i in range start at 0 python code example
Example 1: python range not starting at 0
>>> range(1,11)
Example 2: range python start at 1
>>> def range1(start, end):
... return range(start, end+1)
...
>>> range1(1, 10)
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]