字符串模板
Posted wang102030
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串模板相关的知识,希望对你有一定的参考价值。
from string import Template print(type(Template)) mystr = Template("hi,$name 你是$baby") print(mystr.substitute(name = "边真", baby = "lovely "))
# 结果
<class ‘string._TemplateMetaclass‘> hi,边真 你是lovely
以上是关于字符串模板的主要内容,如果未能解决你的问题,请参考以下文章