码迷,mamicode.com
首页 > 编程语言 > 详细

python 字符串模板

时间:2019-05-03 16:17:09      阅读:108      评论:0      收藏:0      [点我收藏+]

标签: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 

 

python 字符串模板

标签:tac   div   name   mys   code   rom   ring   love   string   

原文地址:https://www.cnblogs.com/sea-stream/p/10805120.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!