蓝绝

博客园 首页 新随笔 联系 订阅 管理

 

s='hello,Python,Python,Python'
print('用字符串替换其中字符串,替换2次',s.replace('Python','java',2))

lst=['hello','java','Python']  #可以是列表或者元组
print('用空格连接列表全部元素',''.join(lst))
print('用*连接列表全部元素','*'.join(lst))

'''如果是字符串'''
print('如果为字符串时,作为字符串序列插入','*'.join('Python'))
用字符串替换其中字符串,替换2次 hello,java,java,Python
用空格连接列表全部元素 hellojavaPython
用*连接列表全部元素 hello*java*Python
如果为字符串时,作为字符串序列插入 P*y*t*h*o*n

 

posted on 2022-09-04 12:10  蓝绝  阅读(20)  评论(0编辑  收藏  举报