1、执行Python代码
正如我们在上一页中学到的,可以通过直接在命令行中编写代码来执行Python语法:>>> print("Hello, World!")
Hello, World!
或通过使用.py文件扩展名在服务器上创建python文件,然后在命令行中运行它:C:\Users\Your Name>python myfile.py
2、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!")
3、Python变量声明和赋值
在Python中,在为变量赋值时会创建变量:
例如,
Python中的变量:x = 5
y = "Hello, World!"
Python没有用于声明变量的命令。
您将在“Python变量”一章中了解有关变量的更多信息。
4、Python代码注释
Python具有注释功能,可用于代码内文档。
注释以#开头,Python将把其余的行作为注释呈现:
例如,
Python中的注释:#This is a comment.
print("Hello, World!")