micropython/tests/basics/bytes_construct_endian.py

8 wiersze
153 B
Python

# test construction of bytes from different objects
from array import array
# arrays
print(bytes(array('h', [1, 2])))
print(bytes(array('I', [1, 2])))