1.单行:

    1. #我是注释
    2. print("hello,python")

    2.多行:
    1)单引号

    1. '''
    2. 我是注释
    3. 我是注释
    4. 我是注释
    5. '''
    6. print("hello,python")

    2)双引号

    1. """
    2. 我是注释
    3. 我是注释
    4. 我是注释
    5. """
    6. print("hello,python")