How to check if version is 64 or 32 bits in Python

2 Answers

0 votes
import sys

print(sys.maxsize > 2**32) # True = 64 bits, False = 32 bits




'''
run:

True

'''

 



answered Feb 23, 2023 by avibootz
0 votes
import platform

print(platform.architecture()[0])




'''
run:

64bit

'''

 



answered Feb 23, 2023 by avibootz

Related questions

2 answers 105 views
1 answer 90 views
1 answer 100 views
1 answer 123 views
1 answer 80 views
...