私信TA
用户名:uq_84608482620
访问量:2481
签 名:
自我简介:
作者: 证毕 发表时间:2023-02-26 20:38:22 浏览:97 | 评论:1
解题思路:注意事项:参考代码:
#注意去掉前导后导空格 #先把字符串转为列表,直接用replace会有问题(比如句子中的want可能ant会被替换) s = list(input().strip().split()) b = input().strip() c = input().strip() #替换列表中的元素 a = [c if i == b else i for i in s] #把列表转回字符串 print(" ".join(a).strip())
0.0分
4 人评分
看不懂代码解释一下代码? 或者生成一段代码?试试AI编程助手吧
s = input() s1 = input() s2 = input() print(s.replace(s1, s2)) 过不了,怎么改