我正在使用格式和命名占位符并试图弄清楚: 如何访问嵌套项目(例如。JSON 对象(在 Python 中使用命名占位符? 例如
data = {
'first': 'John', 'last': 'Doe',
'kids': {
'first': 'number1',
'second': 'number2',
'third': 'number3'
}
}
'{first} {last} {kids}'.format(**data) # Python console
"John Doe {'second': 'number2', 'third': 'number3', 'first': 'number1'}"
但是我如何编写我的"命名占位符格式",以便我可以输出
"John Doe, number1, number2, number3"
有关如何从 JSON 对象获取输出的任何线索都值得赞赏。
字符串格式支持索引;您不必用引号括起来:
'{first} {last}, {kids[first]}, {kids[second]}, {kids[third]}'.format(**data)
演示:
>>> '{first} {last}, {kids[first]}, {kids[second]}, {kids[third]}'.format(**data)
'John Doe, number1, number2, number3'