如何在 Python 字典 dict() 中添加多行注释?


你可以像通常一样在 Python 脚本中的任何地方添加注释。但请注意,你只能使用 # 来添加单行注释。多行注释就像字符串,你不能在字典定义之间放置一个字符串。例如,以下声明完全有效 −

示例

testItems = {
   'TestOne': 'Hello',
   # 'TestTwo': None,
}

但以下则不行 −

testItems = {
   'TestOne': 'Hello',
   """
   Some random
   multiline comment
   """
}

更新时间:2020-03-05

273 次浏览

开启你的 职业生涯

完成课程以获得认证

开始
广告