“So überprüfen Sie, ob Python 32 oder 64 Bit ist” Code-Antworten

Überprüfen Sie Python 32 oder 64

# from your Windows/Linux shell run:
python -c "import sys; print(sys.maxsize > 2**32);"
# True --> 64 bits, False --> 32 bits
Darth Vader

Überprüfen Sie 32 oder 64 Bit Python

import sys
sys.maxsize > 2**32 
# it should display True in case of 64bit and False in case of 32bit
Bloody Bee

Wie man weiß, ob Python 64 oder 32 Bit ist

import platform
platform.architecture()
Happy Hippopotamus

So überprüfen Sie, ob Python 32 oder 64 Bit ist

import struct
print(struct.calcsize("P")*8)
Programmer of empires

Ähnliche Antworten wie “So überprüfen Sie, ob Python 32 oder 64 Bit ist”

Fragen ähnlich wie “So überprüfen Sie, ob Python 32 oder 64 Bit ist”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen