小南解题---字符串对比--64ms 摘要:a=input()b=input() if len(a)==len(b): if a==b: print(2) else: if a.upper()==b.up…… 题解列表 2022年08月27日 0 点赞 0 评论 174 浏览 评分:0.0
1466: 蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:注意事项:参考代码:n = input() m = input() def bj(a,b): s =0 for i in range(len(a)): …… 题解列表 2022年02月04日 0 点赞 0 评论 88 浏览 评分:0.0
字符串对比题解 摘要:解题思路:注意事项:参考代码:a=input()b=input()if a==b: print(2)else: if len(a)==len(b): if a.lower()…… 题解列表 2022年03月09日 0 点赞 0 评论 151 浏览 评分:0.0
python 字符串对比 摘要:解题思路:注意事项:参考代码:str1 = input()str2 = input()if len(str1) != len(str2): print(1)elif len(str1) == l…… 题解列表 2021年04月09日 0 点赞 0 评论 140 浏览 评分:0.0
字符串对比,100%通过!!! 摘要:解题思路:注意事项:参考代码:a = input()b = input()if len(a) != len(b): print(1)elif a == b: print(2)elif a.…… 题解列表 2023年01月19日 0 点赞 0 评论 72 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 题解 摘要:解题思路:先比较长度,再比较内容。不区分大小写的条件可以运用 lower参考代码:str1=input() str2=input() if len(str1)!= len(str2): …… 题解列表 2022年02月24日 0 点赞 0 评论 142 浏览 评分:0.0
python 字符串对比解法(ascll码值) 摘要:S1=input()S2=input()if len(S1)!=len(S2): print(1)else: a=0 b=0 c=0 for i in range(len…… 题解列表 2023年02月12日 0 点赞 0 评论 58 浏览 评分:0.0
巧用upper判断 摘要:解题思路:注意事项:参考代码:a=input()b=input()c=a.upper()d=b.upper()if len(a)!=len(b): print('1')else:…… 题解列表 2022年04月06日 0 点赞 0 评论 120 浏览 评分:0.0
1466: 蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:注意事项:参考代码:def judge(m,n): if len(m)!=len(n): return 1 elif m==n: return 2 …… 题解列表 2023年01月20日 0 点赞 0 评论 53 浏览 评分:9.9
蓝桥杯基础练习VIP-字符串对比-题解(Python代码) 20%错误 摘要:出问题的小伙伴前来考古吧!!! 出错信息:有20%测试未通过。 代码如下: ```python a = input() b = input() if not len(a) == l…… 题解列表 2020年01月14日 0 点赞 7 评论 964 浏览 评分:9.9