圆月山庄资源网 Design By www.vgjia.com
假如有个任务: 给定一个字符串,通过查询字典,来替换给定字符中的变量。如果使用通常的方法:
> "This is a %(var)s" % {"var":"dog"} 'This is a dog' >
其实可以使用string.Template类来实现上面的替换
> from string import Template > words = Template("This is $var") > print(words.substitute({"var": "dog"})) # 通过字典的方式来传参 This is dog > print(words.substitute(var="dog")) # 通过关键字方式来传参 This is dog >
在创建Template实例时,在字符串格式中,可以使用两个美元符来代替$,还可以用${}将 变量扩起来,这样的话,变量后面还可以接其他字符或数字,这个使用方式很像Shell或者Perl里面的语言。下面以letter模板来示例一下:
> from string import Template > letter = """Dear $customer, ... I hope you are having a great time! ... If you do not find Room $room to your satisfaction, let us know. ... Please accept this $$5 coupon. ... Sincerely, ... $manager, ... ${name}Inn""" > template = Template(letter) > letter_dict = {"name": "Sleepy", "customer": "Fred Smith", "manager": "Tom Smith", "room": 308} > print(template.substitute(letter_dict)) Dear Fred Smith, I hope you are having a great time! If you do not find Room 308 to your satisfaction, let us know. Please accept this $5 coupon. Sincerely, Tom Smith, SleepyInn >
有时候,为了给substitute准备一个字典做参数,最简单的方法是设定一些本地变量,然后将这些变量交给local()(此函数创建一个字典,字典中的key就是本地变量,本地变量的值通过key来访问)。
> locals() # 刚进入时,没有其他变量 {'__builtins__': <module '__builtin__' (built-in)>, '__name__': '__main__', '__doc__': None, '__package__': None} > name = "Alice" # 创建本地变量name > age = 18 # 创建本地变量age > locals() # 再执行locals()函数就可以看到name, age的键值队 {'name': 'Alice', '__builtins__': <module '__builtin__' (built-in)>, 'age': 18, '__package__': None, '__name__': '__mai __', '__doc__': None} > locals()["name"] # 通过键name来获取值 'Alice' > locals()["age"] # 通过键age来获取值 18 >
有了上面的例子打底来看一个示例:
> from string import Template > msg = Template("The square of $number is $square") > for number in range(10): ... square = number * number ... print msg.substitute(locals()) ... The square of 0 is 0 The square of 1 is 1 The square of 2 is 4 The square of 3 is 9
另外一种方法是使用关键字参数语法而非字典,直接将值传递给substitute。
> from string import Template > msg = Template("The square of $number is $square") > for i in range(4): ... print msg.substitute(number=i, square=i*i) ... The square of 0 is 0 The square of 1 is 1 The square of 2 is 4 The square of 3 is 9 >
甚至可以同时传递字典和关键字
> from string import Template > msg = Template("The square of $number is $square") > for number in range(4): ... print msg.substitute(locals(), square=number*number) ... The square of 0 is 0 The square of 1 is 1 The square of 2 is 4 The square of 3 is 9 >
为了防止字典的条目和关键字参数显示传递的值发生冲突,关键字参数优先,比如:
> from string import Template > msg = Template("It is $adj $msg") > adj = "interesting" > print(msg.substitute(locals(), msg="message")) It is interesting message
以上这篇在Python中实现替换字符串中的子串的示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
标签:
Python,字符串,子串
圆月山庄资源网 Design By www.vgjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
圆月山庄资源网 Design By www.vgjia.com
暂无评论...
更新日志
2024年11月06日
2024年11月06日
- 雨林唱片《赏》新曲+精选集SACD版[ISO][2.3G]
- 罗大佑与OK男女合唱团.1995-再会吧!素兰【音乐工厂】【WAV+CUE】
- 草蜢.1993-宝贝对不起(国)【宝丽金】【WAV+CUE】
- 杨培安.2009-抒·情(EP)【擎天娱乐】【WAV+CUE】
- 周慧敏《EndlessDream》[WAV+CUE]
- 彭芳《纯色角3》2007[WAV+CUE]
- 江志丰2008-今生为你[豪记][WAV+CUE]
- 罗大佑1994《恋曲2000》音乐工厂[WAV+CUE][1G]
- 群星《一首歌一个故事》赵英俊某些作品重唱企划[FLAC分轨][1G]
- 群星《网易云英文歌曲播放量TOP100》[MP3][1G]
- 方大同.2024-梦想家TheDreamer【赋音乐】【FLAC分轨】
- 李慧珍.2007-爱死了【华谊兄弟】【WAV+CUE】
- 王大文.2019-国际太空站【环球】【FLAC分轨】
- 群星《2022超好听的十倍音质网络歌曲(163)》U盘音乐[WAV分轨][1.1G]
- 童丽《啼笑姻缘》头版限量编号24K金碟[低速原抓WAV+CUE][1.1G]