在string中格式化dict键的正确方法是什么?
当我这样做时:
>>> foo = {'one key': 'one value', 'second key': 'second value'}
>>> "In the middle of a string: {foo.keys()}".format(**locals())
我的期望:
"In the middle of a string: ['one key', 'second key']"
我得到了什么:
Traceback (most recent call last):
File "<pyshell#4>", line 1, in <module>
"In the middle of a string: {foo.keys()}".format(**locals())
AttributeError: 'dict' object has no attribute 'keys()'
但正如你所看到的,我的词典有键:
>>> foo.keys()
['second key', 'one key']
答案 0 :(得分:6)
您无法在占位符中调用方法。您可以访问属性和属性甚至索引值 - 但您无法调用方法:
class Fun(object):
def __init__(self, vals):
self.vals = vals
@property
def keys_prop(self):
return list(self.vals.keys())
def keys_meth(self):
return list(self.vals.keys())
方法示例(失败):
>>> foo = Fun({'one key': 'one value', 'second key': 'second value'})
>>> "In the middle of a string: {foo.keys_meth()}".format(foo=foo)
AttributeError: 'Fun' object has no attribute 'keys_meth()'
有关属性(工作)的示例:
>>> foo = Fun({'one key': 'one value', 'second key': 'second value'})
>>> "In the middle of a string: {foo.keys_prop}".format(foo=foo)
"In the middle of a string: ['one key', 'second key']"
格式化语法清楚地表明您只能访问占位符(取自"Format String Syntax")的属性(la getattr
)或索引(la __getitem__
):
arg_name后面可以跟任意数量的索引或属性表达式。表单
'.name'
使用getattr()
选择命名属性,而'[index]'
形式的表达式使用__getitem__()
执行索引查找。
使用Python 3.6,您可以使用f-strings轻松完成此操作,甚至不必传递locals
:
>>> foo = {'one key': 'one value', 'second key': 'second value'}
>>> f"In the middle of a string: {foo.keys()}"
"In the middle of a string: dict_keys(['one key', 'second key'])"
>>> foo = {'one key': 'one value', 'second key': 'second value'}
>>> f"In the middle of a string: {list(foo.keys())}"
"In the middle of a string: ['one key', 'second key']"
答案 1 :(得分:0)
"In the middle of a string: {}".format(list(foo.keys()))
答案 2 :(得分:0)
"In the middle of a string: {}".format([k for k in foo])
答案 3 :(得分:0)
正如上面其他人所说,你不能按照自己喜欢的方式去做,这里有其他信息可以关注python string format calling a function