码迷,mamicode.com
首页 > 编程语言 > 详细

Python 替换字符串

时间:2014-09-30 13:26:19      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   sp   div   c   on   log   

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

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

还有一种方法:

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

 显示效果:

0 h
1 e
2 l
3 l
4 z
5 w
6 z
7 r
8 l
9 d

 

--End--

Python 替换字符串

标签:style   blog   color   for   sp   div   c   on   log   

原文地址:http://www.cnblogs.com/ibgo/p/4001629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!