首页  >  文章  >  后端开发  >  Python:缩进、注释

Python:缩进、注释

Barbara Streisand
Barbara Streisand原创
2024-11-07 17:26:02650浏览

Python: Indentation, Comments

大家好,今天我开始学习Python。

缩进

  1. Python 使用缩进来指示代码块。
  2. 空格用于指定代码开头的缩进。
  3. 最常见的缩进使用四个,并且必须使用至少一个空格。(不要使用剩余数量的空格,否则会产生语法错误)
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!") 

评论

单行评论

  1. 代码中注释以#开头。我们在代码行中指示 # 的地方,该行应该被忽略以读取。
  2. 如果我们在行尾使用 #,Python 将不会读取代码中该行的其余部分。
#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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn