使用 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'