1. 程式人生 > >python 字符串模板

python 字符串模板

lov clas pre mys emp import meta baby tac

from string import Template
print(type(Template))
mystr = Template("hi,$name 你是$baby")
print(mystr.substitute(name = "邊真", baby = "lovely "))

輸出

# 結果
<class string._TemplateMetaclass>
hi,邊真 你是lovely 

python 字符串模板