DEV Community

Cover image for range(python3)
francnstein
francnstein

Posted on

range(python3)

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)