首先去Python官网,https://www.python.org
找到downloads,我这里系统是win7 x64,下载的是最新版本3.4.2
下载完成后有个msi文件,选择文件安装目录,一路next。
开始菜单下会出现Python shell 调试段程序(IDLE)点击后可以试着输入
Python 3.4.2 (v3.4.2:ab2c023a9432, Oct 6 2014, 22:16:31) [MSC v.1600 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> 1+1
2
>>> print(‘hello world‘)
hello world
>>>
时间: 2024-10-12 01:34:09