mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
7 lines
158 B
Python
7 lines
158 B
Python
# 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])))
|