当前位置:Gxlcms > Python > python字符串替换的2种方法

python字符串替换的2种方法

时间:2021-07-01 10:21:17 帮助过:94人阅读

python 字符串替换 是python 操作字符串的时候经常会碰到的问题,这里简单介绍下字符串替换方法。

python 字符串替换可以用2种方法实现:
1是用字符串本身的方法。
2用正则来替换字符串

下面用个例子来实验下:
a = 'hello word'
把a字符串里的word替换为python

1、用字符串本身的replace方法