key_words = ("screen", "power", "wifi")
user_input = input("Type: ")
if user_input in key_words:
print ("you should do this...")
當任何用戶類型key_words它會工作,但如果用戶在句子中進入它的工作原理是這樣:如何從python中的用戶輸入中找到關鍵字?
Type: screen is not working
>>>
它應該找到關鍵字「屏幕」,並輸入yes但它只是空白。我知道我必須拆分用戶的迴應,但我如何爲最近的Python做這件事?
如果你把''if' break',該'print'將只執行一次。 – GingerPlusPlus