Python3.x 注释
2021-05-16
新闻来源:网淘巴
围观:632
''
1、单行注释
在注释行前加'#'
>>> #print('输入错误')
>>> print('输入错误')
输入错误
2、多行注释
- 在多行前加''',在注释多行后加'''
'''
driver = webdriver.Chrome()
driver.get('https://www.wtao8.com/')
'''
- 在多行前加""",在注释多行后加"""
"""
driver = webdriver.Chrome()
driver.get('https://www.wtao8.com/')
"""
本文链接:https://www.wtao8.com/post/62.html 转载需授权!
上一篇:Python内置函数列表
下一篇:Python变量定义及使用