8 lines
151 B
Python
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]
|