2860: 字符串判等 摘要:解题思路:注意事项:参考代码:a = input().strip()b = input().strip()c = a.replace(" ", "")d = b.replace(" ", "")c =…… 题解列表 2024年08月01日 0 点赞 0 评论 256 浏览 评分:0.0
2860: 字符串判等 摘要:解题思路:注意事项:参考代码:s1 = "".join(input().lower().split()) s2 = "".join(input().lower().split()) if s1 =…… 题解列表 2024年03月25日 0 点赞 0 评论 102 浏览 评分:9.9
2860基础解法(Python) 摘要:解题思路:全小写(大写)、替换空格、删除冗余注意事项:一定要加strip()参考代码:n1 = input().lower().replace(' ', '').str…… 题解列表 2023年04月09日 0 点赞 2 评论 190 浏览 评分:9.9