大家好,今天我开始学习Python。
缩进
if 10>1 print("Ten is greater than one")
应该使用相同的编号。同一代码块中的空格否则会产生错误。
if 10>1 print("Ten is greater than one") print("Ten is lower than one")
空间使用不同的编号。两个差异代码块中的计数。
if 5 > 2 print("Five is greater than two!") if 5 > 2 print("Five is greater than two!")
评论
单行评论
#print("Hello Python") print("Hello Python")
多行评论
由于Python没有多行注释。我们将在每一行中使用 # 来读取 python 中我们想要忽略的每一行。
#This is a comment #written in #just more than one line print("Hello, World!")
只要字符串没有分配给变量,Python就会读取该行,然后忽略它。我们使用三引号来使用多行注释。
""" This is a comment written in just more than one line """ print("Hello, World!")
以上是Python:缩进、注释的详细内容。更多信息请关注PHP中文网其他相关文章!