您可以像往常一样在python脚本中的任何位置放置注释。但是请注意,您只能使用#放置单行注释。多行注释就像字符串一样,您不能仅在字典定义之间放置字符串。例如,以下声明完全有效-
testItems = { 'TestOne': 'Hello', # 'TestTwo': None, }
但是以下不是-
testItems = { 'TestOne': 'Hello', """ Some random multiline comment """ }