首页 > 代码库 > Python 替换字符串

Python 替换字符串

string类型是不可变的,因此不能采用直接赋值的方式。比如一个字符串 helloworld,想把o替换成z,那么只有先替换,然后再迭代。

strings="helloworld"hello=strings.replace(o,z)for index,string in enumerate(hello):    print index,string

还有一种方法:

import stringtable=string.maketrans(o,z)for index,string in enumerate(strings.translate(table)):    print index,string

 显示效果:

0 h1 e2 l3 l4 z5 w6 z7 r8 l9 d

 

--End--

Python 替换字符串