题解 | #字符串之间的比较#
字符串之间的比较
https://www.nowcoder.com/practice/c207a15115764206b06d367abda91522
str1=str(input()) str2=str(input()) print(str1==str2) print(str1.lower()==str2.lower())
字符串之间的比较
https://www.nowcoder.com/practice/c207a15115764206b06d367abda91522
str1=str(input()) str2=str(input()) print(str1==str2) print(str1.lower()==str2.lower())
相关推荐