Python:Template模板字串

彭世瑜發表於2020-12-31

程式碼示例

from string import Template

s = Template('I am ${name}')

ret = s.substitute(name="Tom")
print(ret)
# I am Tom

相關文章