用戶登陸(三次重試)

count=0
while count<3:
    use=input("用戶名:>>>")
    pwd=input("密碼:>>>")
    if use=="alex" and pwd=="123":
        print("歡迎登陸")
    else:
        print("用戶名或密碼錯誤!")
    count=count+1

結果:用戶名>>>  密碼>>>    spa

相關文章
相關標籤/搜索