标签:tac div name mys code rom ring love string
from string import Template print(type(Template)) mystr = Template("hi,$name 你是$baby") print(mystr.substitute(name = "边真", baby = "lovely "))
输出
# 结果 <class ‘string._TemplateMetaclass‘> hi,边真 你是lovely
标签:tac div name mys code rom ring love string
原文地址:https://www.cnblogs.com/sea-stream/p/10805120.html