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