Answers for "how to check if integer is 32 bit python"

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 "how to check if integer is 32 bit python"

Python Answers by Framework

Browse Popular Code Answers by Language