Python-替换与合并

字符串替换replace()

第1个参数指定被替换的子串;

第2个参数指定替换子串的字符串;

第3个参数可有可无,指定最大替换次数,默认全部替换;

该方法返回替换后得到的新字符串,原字符串不变。

字符串合并join()

将列表或元组中的字符串合并成一个字符串。

 1 s = 'hello,Python'
 2 print(s.replace('Python', 'Java'))
 3 s1 = 'hello,Python,Python,Python'
 4 print(s1.replace('Python', 'Java', 2))
 5 
 6 # 连列表
 7 lst = ['hello', 'java', 'python']
 8 print('|'.join(lst))
 9 print(''.join(lst))
10 
11 # 连元组
12 t = ('hello', 'Java', 'Python')
13 print(''.join(lst))

 

posted @ 2022-02-25 16:39  Xxiaoyu  阅读(90)  评论(0编辑  收藏  举报