字符串模板

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


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

 

posted @ 2018-07-23 11:41  睡觉了嘛  阅读(99)  评论(0编辑  收藏  举报