code_str = input("Enter code: ")
while code_str !="Q":
print("Code:",code_str)
if code_str == 'B' and code_str == "D" and code_str == "W":
print("Good Code.")
else:
print("Bad code. Try Again")
code_str = input("Enter code: ")
我需要這樣做,它打印良好的代碼,只要B,D或W,由用戶輸入,但我無法弄清楚。謝謝!Python「IF」聲明
它應該總是打印「錯誤的代碼」。我認爲 – Sheng
'和'?那該怎麼辦? –
不要編輯你的問題,把它變成一個完全不同的問題;問一個新的。 – user2357112