python,不区分大小写进行判断
python,不区分大小写进行判断
string1 = 'Hello'
string2 = 'hello'
if string1.lower() == string2.lower():
print("The strings are the same (case insensitive)")
else:
print("The strings are NOT the same (case insensitive)")

浙公网安备 33010602011771号