标签: python keyvaluepair
考虑以下两种方法:
def test(): string = "{test}" print convert(string, test='test') def convert(string, **test): return string.format(test)
为什么会抛出KeyError:'test'?
正如我在其他threads中看到的那样,这应该是传递值的有效方法,不应该吗?