Python range() Function - W3Schools
https://www.w3schools.com/python/ref_func_range.asp
WebThe range () function returns a sequence of numbers, starting from 0 by default, and increments by 1 (by default), and stops before a specified number. Syntax range (start, stop, step ) Parameter Values More Examples Example Create a sequence of numbers from 3 to 5, and print each item in the sequence: x = range(3, 6) for n in x: print(n)
DA: 47 PA: 72 MOZ Rank: 91