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

《Python CookBook2》 第一章 文本 - 替换字符串中的子串

时间:2014-09-03 16:26:46      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   strong   div   sp   log   on   c   

 替换字符串中的子串


 任务:

  给定一个字符串,通过查询一个字符串替换字典,将字符串中被标记的子字符串替换掉。

 

解决方案:

>>> 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》 第一章 文本 - 替换字符串中的子串

标签:style   blog   color   strong   div   sp   log   on   c   

原文地址:http://www.cnblogs.com/wuzhiming/p/3944180.html

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