5 lines
136 B
Python
Raw Normal View History

from array import array
# construct from something with unknown length (requires generators)
print(array('i', (i for i in range(10))))