Python string replace 方法

python

Python string replace   方法

 

方法1:

>>> a=\'...fuck...the....world............\'

>>> b=a.replace(\'.\',\' \')

>>> print b

   fuck   the    world

方法2:

>>> a=\'...fuck...the....world............\'

>>> b=string.replace(a,\'.\',\' \')

>>> print b

   fuck   the    world 

 

以上是 Python string replace 方法 的全部内容, 来源链接: utcz.com/z/388818.html

回到顶部