发布网友 发布时间:2022-04-24 15:35
共4个回答
热心网友 时间:2022-04-06 15:24
多行注释和多行字符串变量一样, 都是使用三个"或'开头和结尾
热心网友 时间:2022-04-06 16:42
单行 #代码 或者 选择多行 Ctrl + /
也可以 三个单引号 '''代码'''
热心网友 时间:2022-04-06 18:16
多行注释是三个引号'''
热心网友 时间:2022-04-06 20:08
注释的方式;
1、单行注释 #
例:
# 定义学校类
class School(Master):
def __init__(self):
2、多行注释
'''
内容1
内容2
.......
'''
3、代码下的注释特例 ''' 内容 '''
例:
def add_condiments(self,condiment):
"""添加调料"""
# 用户意愿调料追加到列表
self.condiments.append(condiment)