题目:将下面的alex字符串替换成SB
msg = ‘hello alex‘ # 定义变量 msg1 = msg.replace(‘alex‘,‘SB‘) # 将alex字符串替换成SB print(type(msg1),msg1)
输出结果:
<class ‘str‘> hello SB
时间: 2024-12-09 05:55:38
msg = ‘hello alex‘ # 定义变量 msg1 = msg.replace(‘alex‘,‘SB‘) # 将alex字符串替换成SB print(type(msg1),msg1)
输出结果:
<class ‘str‘> hello SB