教程集 www.jiaochengji.com
教程集 >  Python编程  >  Python入门  >  正文 怎样查看python是64位还是32位

怎样查看python是64位还是32位

发布时间:2021-04-22   编辑:jiaochengji.com
教程集为您提供怎样查看python是64位还是32位等资源,欢迎您收藏本站,我们将为您提供最新的怎样查看python是64位还是32位资源

怎样查看python是64位还是32位?下面给大家介绍三种方法:

方法一:

打开IDLE,看第一行提示,例如:

32位系统是这样的 Python 3.5.1 (v3.5.1:37a07cee5969, Dec  6 2015, 01:38:48) [MSC v.1900 32 bit (Intel)] on win32

64位系统是这样的Python 3.5.1 (v3.5.1:37a07cee5969, Dec  6 2015, 01:54:25) [MSC v.1900 64 bit (AMD64)] on win32

相关推荐:《Python入门教程

方法二:

打开命令提示符CMD,输入python,也会显示上述命令。

32位系统下

64位系统下

方法三:

C:\Users\dell>python
Python 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 20:53:40) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import platform
>>> platform.architecture()
('64bit', 'WindowsPE')
>>>

您可能感兴趣的文章:
怎样查看python是64位还是32位
python32位和64位的区别是什么
python下载操作系统需要选择64位吗?
python如何选择32位还是64位的
如何查看python是32位还是64位
python3如何查看是32位还是64位
电脑管家Win10检测内存小于2G怎么办 如何解决?
python3.10如何下载与安装?
python27.dll错误代码126怎么解决
python怎么画曲线图

[关闭]
~ ~