Files
Core2forAWS-MicroPython/tests/basics/array_construct2.py
T

12 lines
278 B
Python
Raw Normal View History

try:
2019-10-22 17:33:23 +11:00
from uarray import array
except ImportError:
2019-10-22 17:33:23 +11:00
try:
from array import array
except ImportError:
print("SKIP")
raise SystemExit
# construct from something with unknown length (requires generators)
print(array('i', (i for i in range(10))))