列表

详情


NP39. 字符串之间的比较

描述

正在学习Python的牛可乐,对Python里面的大小比较很疑惑。他知道数字之间可以相等,有大小关系,但是字符串之间怎么比较,他就很纳闷了。现在牛可乐输入两个字符串s1与s2,请你帮他比较这两个字符串是否相等,两个字符串各自调用lower函数后还是否相等。

输入描述

两行输入两个字符串,其中字符仅包含大小写字母和数字。

输出描述

第一行输出s1是否与s2相等的布尔值;
第二行输出s1.lower()是否与s2.lower()相等的布尔值。

示例1

输入:

Python
PYTHON

输出:

False
True

原站题解

Python 3 解法, 执行用时: 28ms, 内存消耗: 4480KB, 提交时间: 2022-07-27

str1 = input()
str2 = input()
print(str==str2)
print(str1.lower()==str2.lower())

Python 3 解法, 执行用时: 28ms, 内存消耗: 4516KB, 提交时间: 2022-07-27

a = input()
b = input()
if a == b :
    print('True')
else:
    print('False')

if a.lower() == b.lower() :
    print('True')
else:
    print('False')

Python 3 解法, 执行用时: 28ms, 内存消耗: 4532KB, 提交时间: 2022-07-27

a = input()
b = input()
print(a == b)
print(a.lower() == b.lower())

Python 3 解法, 执行用时: 28ms, 内存消耗: 4536KB, 提交时间: 2022-07-27

s1=input()
s2=input()
print(s1==s2)
print(s1.lower()==s2.lower())
    

Python 3 解法, 执行用时: 28ms, 内存消耗: 4548KB, 提交时间: 2022-08-01

x = input()
y = input()
print(x == y,x.lower() == y.lower(),sep = '\n')

上一题