Python 字符串替换小例子

 for i, j in {'chr':'\t', ':' : '\t', '..' : '\t'}.iteritems():

text = text.replace(i, j)
print text

你可能感兴趣的:(字符串)