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 92 views
1 answer 78 views
1 answer 84 views
1 answer 109 views
1 answer 67 views
...