Python 语法
执行 Python 语法
正如我们在上一页中学到的,Python 语法可以通过直接在命令行中写入来执行
>>> print("Hello, World!")
Hello, World!
或者通过在服务器上创建一个 Python 文件(使用 .py 文件扩展名)并在命令行中运行它来执行
C:\Users\你的姓名>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 中的注释
# 这是注释。
print("Hello, World!")
自己试一下 »
视频:Python 语法
W3schools Pathfinder
Track your progress - it's free!