使用 Getitem 和 Getattr 格式化
任何支持 __getitem__
的数据结构都可以使其嵌套结构格式化:
person = {'first': 'Arthur', 'last': 'Dent'}
'{p[first]} {p[last]}'.format(p=person)
# 'Arthur Dent'
可以使用 getattr()
访问对象属性:
class Person(object):
first = 'Zaphod'
last = 'Beeblebrox'
'{p.first} {p.last}'.format(p=Person())
# 'Zaphod Beeblebrox'