Python/python syntax
来自菜鸟教程
<languages />
Python语法
执行Python语法
正如我们在上一页中学到的,可以通过直接在命令行中编写代码来执行Python语法:
>>> print("Hello, World!") Hello, World!
或通过使用.py文件扩展名在服务器上创建python文件,然后在命令行中运行它:
C:\Users\Your Name>python myfile.py
Python缩进
缩进是指代码行开头的空格。
在其他编程语言中,代码中的缩进仅出于可读性考虑,而Python中的缩进非常重要。
Python使用缩进来指示代码块。
例
if 5 > 2: print("Five is greater than two!")
如果您跳过缩进,Python会给您一个错误:
例
语法错误:
if 5 > 2: print("Five is greater than two!")
作为程序员,空格数量由您决定,但必须至少一个。
例
if 5 > 2: print("Five is greater than two!") if 5 > 2: print("Five is greater than two!")
您必须在同一代码块中使用相同数量的空格,否则Python将给您一个错误:
例
语法错误:
if 5 > 2: print("Five is greater than two!") print("Five is greater than two!")
Python变量
在Python中,在为变量赋值时会创建变量:
例
Python中的变量:
x = 5 y = "Hello, World!"
Python没有用于声明变量的命令。
您将在 Python变量
章节。
评论
Python具有注释功能,可用于代码内文档编制。
注释以#开头,Python将把其余的行作为注释呈现:
例
Python中的注释:
#This is a comment. print("Hello, World!")