好的,需要理解爲什麼我的代碼不工作。 目前它陷入了無限循環中,在輸入了錯誤的引腳後詢問用戶的引腳。用戶使用while語句輸入整數
我相信我搞砸了while語句莫名其妙。
def inputValidator():
userInput = requestInteger("Please input a PIN between 1 - 1000")
while 1 > userInput > 1000 :
requestInteger("Your PIN is not within 1 - 1000, please try again")
print("Thanks! your new PIN is " + str(userInput))
感謝您的幫助!