将下面的alex字符串替换成SB
题目:将下面的alex字符串替换成SB
msg = 'hello alex' # 定义变量 msg1 = msg.replace('alex','SB') # 将alex字符串替换成SB print(type(msg1),msg1)
输出结果:
<class 'str'> hello SB
msg = 'hello alex' # 定义变量 msg1 = msg.replace('alex','SB') # 将alex字符串替换成SB print(type(msg1),msg1)
输出结果:
<class 'str'> hello SB