字符串模板

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/wang102030/p/9353865.html