mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 01:40:34 +02:00
5 lines
136 B
Python
5 lines
136 B
Python
from array import array
|
|
|
|
# construct from something with unknown length (requires generators)
|
|
print(array('i', (i for i in range(10))))
|