| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/ProGamerCode/circuitpython/master/tests/float/bytes_construct.py | [Back] [Original] |
# test construction of bytearray from array with float type
try:
from array import array
except ImportError:
print("SKIP")
raise SystemExit
print(bytes(array('f', [1, 2.3])))
| Web Proxy Viewer | New URL | Original Page |