我非常喜欢用字典来格式化字符串。它帮助我阅读我正在使用的字符串格式,以及让我利用现有的字典。例如:

class MyClass:
    def __init__(self):
        self.title = 'Title'

a = MyClass()
print 'The title is %(title)s' % a.__dict__

path = '/path/to/a/file'
print 'You put your file here: %(path)s' % locals()

但是我搞不懂python。X语法来做同样的事情(或者如果可能的话)。我想做以下事情

# Fails, KeyError 'latitude'
geopoint = {'latitude':41.123,'longitude':71.091}
print '{latitude} {longitude}'.format(geopoint)

# Succeeds
print '{latitude} {longitude}'.format(latitude=41.123,longitude=71.091)

当前回答

要将字典解压缩为关键字参数,请使用**。此外,new-style格式支持引用对象和映射项的属性:

'{0[latitude]} {0[longitude]}'.format(geopoint)
'The title is {0.title}s'.format(a) # the a from your first example

其他回答

要将字典解压缩为关键字参数,请使用**。此外,new-style格式支持引用对象和映射项的属性:

'{0[latitude]} {0[longitude]}'.format(geopoint)
'The title is {0.title}s'.format(a) # the a from your first example

Python 2语法在Python 3中也适用:

>>> class MyClass:
...     def __init__(self):
...         self.title = 'Title'
... 
>>> a = MyClass()
>>> print('The title is %(title)s' % a.__dict__)
The title is Title
>>> 
>>> path = '/path/to/a/file'
>>> print('You put your file here: %(path)s' % locals())
You put your file here: /path/to/a/file

这对你有好处吗?

geopoint = {'latitude':41.123,'longitude':71.091}
print('{latitude} {longitude}'.format(**geopoint))

由于这个问题是特定于Python 3的,这里使用了新的f-string语法,从Python 3.6开始可用:

>>> geopoint = {'latitude':41.123,'longitude':71.091}
>>> print(f'{geopoint["latitude"]} {geopoint["longitude"]}')
41.123 71.091

注意外单引号和内双引号(也可以反过来写)。

大多数答案只格式化字典的值。

如果你也想将键格式化为字符串,你可以使用dict.items():

geopoint = {'latitude':41.123,'longitude':71.091}
print("{} {}".format(*geopoint.items()))

输出:

('latitude', 41.123) ('longitude', 71.091)

如果你想以一种任意的方式格式化,也就是说,不像元组那样显示键值:

from functools import reduce
print("{} is {} and {} is {}".format(*reduce((lambda x, y: x + y), [list(item) for item in geopoint.items()])))

输出:

纬度是41.123,经度是71.091