python 字符串模板

 

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

输出

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

 

posted @ 2019-05-03 14:28  anobscureretreat  阅读(1375)  评论(0编辑  收藏  举报