xxxxxxxxxx
import platform
platform.architecture()
xxxxxxxxxx
# from your Windows/Linux shell run:
python -c "import sys; print(sys.maxsize > 2**32);"
# True --> 64 bits, False --> 32 bits
xxxxxxxxxx
import sys
sys.maxsize > 2**32
# it should display True in case of 64bit and False in case of 32bit