好了,所以我寫一個簡單的登錄系統,這裏是代碼的Python 2.7 for循環,而不是打印正確的時間
import time
for counter in range(5):
username=str(raw_input("Please enter your username"))
password=str(raw_input("Please enter your password"))
if username =="bros10":
print "",username,"entered"
time.sleep(4)
print "You got the username right"
if password =="brosbros10":
print "You got the password right"
print "Welcome to the system"
break
else:
print "Try again"
當我運行它,它會打印此位打印「會發生什麼「,用戶名,輸入密碼後輸入」 任何幫助表示讚賞
我不確定我是否理解。您是否希望在密碼之前打印它,然後打印?如果是這樣,代碼正在做你所要求的。嘗試在輸入'password'之前移動'print'。 – Aurora0001
你沒有說出你的期望。你有什麼問題 ? – furas