我有兩個字符串string0和string1。我想檢查一個輸入是否包含小寫的這些字符串。但它只是檢查其中的一個。檢查兩個字符串轉換爲lower()未按預期工作
import sys
string0 = "Weather"
string1 = "Like"
userInput = input("say whatever")
if string0.lower() and string1.lower() in userInput:
print("it is quite nice")
這裏它只是檢查string1。我不明白爲什麼,有什麼想法?我使用python 3
因爲你在這裏誤用'和'運算符。左手邊總是「真」。 – usr2564301