首页 > 代码库 > 《Python CookBook2》 第一章 文本 - 替换字符串中的子串
《Python CookBook2》 第一章 文本 - 替换字符串中的子串
替换字符串中的子串
任务:
给定一个字符串,通过查询一个字符串替换字典,将字符串中被标记的子字符串替换掉。
解决方案:
>>> import string>>> new_style = string.Template(‘this is $thing‘)#给substitute 方法传入一个字典参数并调用>>> print new_style.substitute({‘thing‘:5})this is 5>>> print new_style.substitute({‘thing‘:‘test‘})this is test#关键字参数,并调用>>> print new_style.substitute(thing = 5)this is 5>>> print new_style.substitute(thing = ‘test‘)this is test
《Python CookBook2》 第一章 文本 - 替换字符串中的子串
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。