Python字符串中replace,split,join方法

mystr = 'hello world and gzy and java and python'

# replace 返回一个新对象,原字符串不变,字符串为不可变类型
str1 = mystr.replace('and', 'he')
str2 = mystr.replace('and', 'he', 1)
str3 = mystr.replace('and', 'he', 10)
print(str1)
print(str2)
print(str3)

# split 返回一个列表
list1 = mystr.split(' and ')
list2 = mystr.split('and', 2)
print(list1)
print(list2)

# 填充符.join 合并列表返回一个拼接的字符串
str4 = '...'.join(list1)
print(str4)
上一篇:【SSO单点系列】(2):CAS4.0 登录页的个性化定制


下一篇:How to Get Your Brain to Focus—TED Record