如何在 Python 字典 dict() 中添加多行注释?
你可以像通常一样在 Python 脚本中的任何地方添加注释。但请注意,你只能使用 # 来添加单行注释。多行注释就像字符串,你不能在字典定义之间放置一个字符串。例如,以下声明完全有效 −
示例
testItems = { 'TestOne': 'Hello', # 'TestTwo': None, }
但以下则不行 −
testItems = { 'TestOne': 'Hello', """ Some random multiline comment """ }
广告