如何运行Python
- 安装环境
按照系统类型安装Python,安装时注意勾选路径否则要手动配置Python路径。 - 运行Python
打开命令行
,输入Python回车
,出现下面的提示:
Python 3.6.3 (v3.6.3:2c5fed8, Oct 3 2017, 18:11:49) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
这表示Python安装成功。可以在>>>
后上输入Python代码了。
- 运行一段代码
在>>>
后面输入print('hello,world')
,得到输出
>>> print('hello,world')
hello,world
>>>
或者用文本文件编辑Python代码并保存为后缀名是.py
的文件。
缩进
!python的缩进必须严格按照格式来进行缩进
网友评论