标签: python python-3.x
如果我有这个:
>>> templ = "{aa} fd3443fds {bb} 543gfdgf {cc}" >>> d1 = {"aa": "this is aa", "bb": "this is bb33", "cc": "this is cc5222"}
使用“d1”中相应的值替换templ中{}中的值的最简单方法是什么,最好使用String的“format”函数?
templ