1. 否则就算写了中文注释,程序也会一直报错 单行注释: #你的注释内容 多行注释: ‘’‘ 你的注释内容1 你的注释内容2 ’‘’ 运行效果:
运行结果: 添加的注释部分,这里是变量内容 还有一种写法,可以先不在函数里面加内容,直接给函数.__doc__赋值 # coding:utf-8 c = "这里是变量内容" def hello(): print("hello world!") #用hello.__doc__方法添加注释内容 hello.__doc__ = """添加的注释部分,%s"""%c a = hello.__doc__ prin...