题解 1466: 蓝桥杯基础练习VIP-字符串对比

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

字符串对比题解

摘要:解题思路:注意事项:参考代码:a=input()b=input()if a==b:    print(2)else:    if len(a)==len(b):        if a.lower()……

python 字符串对比

摘要:解题思路:注意事项:参考代码:str1 = input()str2 = input()if len(str1) != len(str2):    print(1)elif len(str1) == l……

巧用upper判断

摘要:解题思路:注意事项:参考代码:a=input()b=input()c=a.upper()d=b.upper()if len(a)!=len(b):    print('1')else:……