首页 > 代码库 > [Head First Python] - 第二章 python of comment

[Head First Python] - 第二章 python of comment

1- 多行注释 ‘‘‘ ‘‘‘ 或 """ """

‘‘‘this is the standard way to include a

  multiple-line comment in you code‘‘‘

"""this is the standard way to include a

  multiple-line comment in you code"""

2- 单行注释 #

# this is comment