The range function creates a sequential list of numbers.
The code below generates a list containing all of the integers, up to 10.
------------------------------------
ex.
nums = list(range(2,20,2))
print(nums)
[2, 4, 6, 8, 10, 12, 14, 16, 18]
solo learn
FRANCNSTEINΒ© | Created ππππ β€
Top comments (0)