博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
《Python CookBook2》 第一章 文本 - 替换字符串中的子串
阅读量:6253 次
发布时间:2019-06-22

本文共 445 字,大约阅读时间需要 1 分钟。

 替换字符串中的子串


 任务:

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

 

解决方案:

>>> 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

  

 

转载于:https://www.cnblogs.com/wuzhiming/p/3944180.html

你可能感兴趣的文章
顺序图【6】--☆☆
查看>>
Docker 版本
查看>>
【ABP杂烩】面向切面编程(AOP)知识总结
查看>>
java 如何使用多线程调用类的静态方法?
查看>>
不能运行VS2005的DSL Tool例子
查看>>
OSI/RM参考模型和TCP/IP协议的关系
查看>>
Android Intent用法汇总
查看>>
使用PIP扩展BTARN
查看>>
GetLastError()返回值及含义
查看>>
android UI之Shape详解_GradientDrawable
查看>>
Oracle Management Server配置
查看>>
O/R Mapping实际开发经验之谈(转)
查看>>
SPSS Clementine 数据挖掘入门 (3)
查看>>
Hosting the WCF service
查看>>
xampp下php环境的设置
查看>>
以消息为基础,以事件驱动之(message based, event driven)-- 《深入浅出MFC》
查看>>
如何建立合适的索引?
查看>>
FF或将支持返回一个HTML文档对象
查看>>
QtGui.QCalendarWidget
查看>>
高内聚低耦合 浅析
查看>>