micropython/tests/float/array_construct.py

7 wiersze
158 B
Python
Czysty Zwykły widok Historia

# test construction of array from array with float type
from array import array
print(array('f', array('h', [1, 2])))
print(array('d', array('f', [1, 2])))