array_construct2.py 204 B

12345678
  1. try:
  2. from array import array
  3. except ImportError:
  4. print("SKIP")
  5. raise SystemExit
  6. # construct from something with unknown length (requires generators)
  7. print(array('i', (i for i in range(10))))