美文网首页
Lesson 011 —— python 注释

Lesson 011 —— python 注释

作者: 爱喵喵的鱼 | 来源:发表于2018-10-18 15:48 被阅读0次

    Lesson 011 —— python 注释

    确保对模块, 函数, 方法和行内注释使用正确的风格

    Python中的注释有单行注释和多行注释:

    Python中单行注释以 # 开头;多行注释用三个单引号 ''' 或者三个双引号 """ 将注释括起来。

    单引号(‘’‘)

    #!/usr/bin/python3 
    '''
    这是多行注释,用三个单引号
    这是多行注释,用三个单引号 
    这是多行注释,用三个单引号
    '''
    print("Hello, World!") 
    
    

    双引号(“”“)

    #!/usr/bin/python3 
    """
    这是多行注释,用三个双引号
    这是多行注释,用三个双引号 
    这是多行注释,用三个双引号
    """
    print("Hello, World!") 
    

    相关文章

      网友评论

          本文标题:Lesson 011 —— python 注释

          本文链接:https://www.haomeiwen.com/subject/avhszftx.html