Answers for "check if python is 32 or 64 bit linux"

3

check python 32 or 64

# from your Windows/Linux shell run:
python -c "import sys; print(sys.maxsize > 2**32);"
# True --> 64 bits, False --> 32 bits
Posted by: Guest on May-15-2021
1

How to check if Python is 32 or 64 bit

import struct
print(struct.calcsize("P")*8)
Posted by: Guest on June-24-2021

Code answers related to "check if python is 32 or 64 bit linux"

Python Answers by Framework

Browse Popular Code Answers by Language