“Jak wiedzieć, czy Python ma 64 lub 32 -bitowe” Kod odpowiedzi

Sprawdź Python 32 lub 64

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

Sprawdź 32 lub 64 -bitowy Python

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

Jak wiedzieć, czy Python ma 64 lub 32 -bitowe

import platform
platform.architecture()
Happy Hippopotamus

Jak sprawdzić, czy Python ma 32 lub 64 -bitowe

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

Odpowiedzi podobne do “Jak wiedzieć, czy Python ma 64 lub 32 -bitowe”

Pytania podobne do “Jak wiedzieć, czy Python ma 64 lub 32 -bitowe”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu