On this page

Python 语法

Python语法

正如我们在上一页中了解到的,Python 语法可以通过直接在命令行中编写来执行:

>>> print("Hello, World!")
Hello, World!

或者通过在服务器上创建一个 python 文件,使用 .py 文件扩展名,并在命令行中运行它:

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 中的注释:

#This is a comment.
print("Hello, World!")