Answers for "python check if number is 32 bit"

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 "python check if number is 32 bit"

Python Answers by Framework

Browse Popular Code Answers by Language