#每天一点Python——68 #字符串的替换与合并 #如图:
#①字符串的替换
s='hello,computer'#创建一个字符串
print(s.replace('computer','python'))
#用python替换computer
'''
替换语法
string.replace(old, new, count)
sring:表示字符串
old:要被替换的旧字符串。
new:替换后的新字符串。
count:可选参数,指定最多替换的次数。
'''
a="Hello, World!"
new_s = a.replace("o", "x", 2,)
print(new_s)
s1='hello,computer,computer,computer'
print(s1.replace('computer','python',2))
#②字符串的合并
'''
分隔符或连接符.join(字符串序列)
'''
#列表
list1=['ab','bc','vl']
print('|'.join(list1))
print(''.join(list1))#‘’里面什么也不输入,直接合并
#元组
yz=('hello','world','nihao')
print(''.join(yz))#直接拼接
#在一个字符串里面直接输入+,意思为直接把字符串作为字符串序列并在每一个字符里面加上+
print('+'.join('python'))
#输出结果为p+y+t+h+o+n