一、字符串常用方法,以下几个方法必须要记住
strip:默认去掉字符串两边的空格和换行符
s=‘.abc.‘ new_s=s.strip(‘.‘) #默认去掉字符串两边的空格和换行符,括号里的可以改
replace:replace() 方法把字符串中的 old(旧字符串) 替换成 new(新字符串),如果指定第三个参数max,则替换不超过 max 次。
b = ‘hhhhhhhhhhhhhhhhaaaaaaa‘ print(b.replace(‘h‘,‘ABC‘,5)) #h是被替换的那个 把h替换为ABC,替换5次
join:以某个字符串把list里边元素连接起来 ;能把list变成字符串
name = [‘xiaohei‘,‘haha‘,‘xiaomi‘]
new_name = str(name)
# print(name)
# print(new_name[2])
res = ‘*‘.join(name) #对列表进行连接
res1 = ‘&‘.join(new_name) #对字符串进行连接
print(res)
print(res1)
原文:https://www.cnblogs.com/yalun/p/13216676.html