Files
Learn-Python-Programming-Th…/ch05/list.iterable.py
T
adii1823 ef37ce0c4e ch05
2021-10-28 17:38:16 +05:30

8 lines
151 B
Python

# list.iterable.py
# this code won't run
>>> range(7)
range(0, 7)
>>> list(range(7)) # put all elements in a list to view them
[0, 1, 2, 3, 4, 5, 6]