Python 获取Windows系统位数 这里使用struct库,传入参数”大写P”,结果乘以8,即可得到是32位还是64位。 import struct bit = struct.calcsize("P")*8 print(bit) demo: [……] Read more