[Head First Python] - 第二章 python of comment
时间:2014-06-18 15:46:56
收藏:0
阅读:264
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
评论(0)