1
我沒有得到這個Python代碼所需的結果。需要幫忙。雖然循環測試
當您輸入滿足條件的字符串時,while循環應該停止。
代碼:
x = input("Enter input: ")
while (int(x[3]) != 1 or int(x[3]) != 2):
print("The fourth character must be a 1 or 2")
x = input("Enter input again: ")
看起來''或'應該是'和'。 – Carcigenicate
您輸入的任何數字總是不等於1或2,因此條件總是成功。 – alexis