python字符串替换的2种方法
Posted 可乐配牛奶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python字符串替换的2种方法相关的知识,希望对你有一定的参考价值。
python字符串替换可以用两种方法实现:
1.用字符串本身的方法
2.用正则来替换字符串
下面用个例子来实验:
a = ‘hello word‘
我把a字符串里的word替换为python
1.用字符串本身的replace方法
a.replace(‘word‘ , ‘python‘)
输出结果是hello python
2.用正则表达式来完成替换:
import re
strinfo = re . compile(‘word‘)
b = strinfo.sub(‘python‘,a)
printf (b)
输出结果也是hello python
以上是关于python字符串替换的2种方法的主要内容,如果未能解决你的问题,请参考以下文章