programming-examples/python/_Basics/Check whether Python shell is executing in 32bit or 64bit mode on OS.py
2019-11-15 12:59:38 +01:00

3 lines
117 B
Python

# For 32 bit it will return 32 and for 64 bit it will return 64
import struct
print(struct.calcsize("P") * 8)