Vérifiez 32 ou 64 bits Python
import sys
sys.maxsize > 2**32
# it should display True in case of 64bit and False in case of 32bit
Bloody Bee
import sys
sys.maxsize > 2**32
# it should display True in case of 64bit and False in case of 32bit
ajay.pyt