一.replace()函数1用字符串本身的replace方法: a = 'hello word' b = a.replace('word','python') print b 1 2 3 二.re.sub() import re a = 'hello word' strinfo = re.compile('word') b = strinfo.sub('python',a) print b…
一.常用的字符串方法(一):(字符串是不能被修改的) 1)a.strip() #默认去掉字符串两边的空格和换行符 a = ' 字符串 \n\n ' c = a.strip() a.lstrip() #默认去掉字符串左边的空格和换行符 a.rstrip() #默认去掉字符串右边的空格和换行符 #如果strip()方法指定一个开头或者结尾的值,那么去掉这两个值,前后有空格都不能去 words = 'today is a wonderful day' print(words.strip('day'…