python 字符串模板

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

输出

# 结果
<class 'string._TemplateMetaclass'>
hi,边真 你是lovely 

猜你喜欢

转载自www.cnblogs.com/sea-stream/p/10805120.html