查看python是32位还是64位

在python解释器中输入以下命令:

>>> import platform
>>> platform.architecture()
会输出版本:32位或64位
本机电脑显示:('64bit', 'WindowsPE')

你可能感兴趣的:(python)