Python注释

不在字符串文字中的井号(#)开始注释。#以后直到物理行末尾的所有字符都是注释的一部分,Python解释器将忽略它们。

示例

#!/usr/bin/python
# First comment
print "Hello, Python!" # second comment

输出结果

这产生以下结果-

Hello, Python!

您可以在语句或表达式后的同一行上键入注释-

name = "Madisetti" # This is again comment

您可以注释多行,如下所示:

# This is a comment.
# This is a comment, too.
# This is a comment, too.
# I said that already.

Python解释器也会忽略后面的三引号字符串,并且可以将其用作多行注释-

'''
This is a multiline
comment.
'''