目录

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 具有用于代码内文档的注释功能。

注释以 # 开头,Python 会将该行的其余部分呈现为注释:

示例

Python 中的注释:

#This is a comment.
print("Hello, World!")
亲自试一试 »

通过练习测试一下

练习:

插入下面代码中缺失的部分以输出"Hello World"。

("Hello World")

开始练习