大约一周前,我在字符串模板中看到了一个使用kwargs的脚本。不幸的是我无法重新找到那个脚本所以我想我会问是否有人知道我可以将kwargs传递给字符串构建器,而不仅仅是args。
这是期望的结果:
"""%name went to the store.""" %( name = John )
当然,这不起作用,对于我的生活,我不记得正确的语法。
答案 0 :(得分:3)
"""%(name)s went to the store.""" % {"name": "John"}
或
"""%(name)s went to the store.""" % dict(name="John")