Answers for "how to check local endianness with Python ?"

0

how to check local endianness with Python ?

>>> import sys
>>> sys.byteorder
# May return 'little' or 'big' depending on the machine executing the above.
Posted by: Guest on December-04-2020

Code answers related to "how to check local endianness with Python ?"

Python Answers by Framework

Browse Popular Code Answers by Language