import datetime #導入時間模塊
usearname='brtc'
passwd='123456'
times=2? ? ? #記錄用戶輸入賬號的次數(shù)
while times >=0:
? ? input_name = input('請輸入usearname:')
? ? input_passwd = input('請輸入password:')
#當輸入的賬號和密碼正確,提示登錄和日期,然后程序結(jié)束
? ? if usearname==input_name and passwd==input_passwd:
? ? ? ? print('歡迎'+usearname+'登錄! 今天的日期是{}'.format(datetime.datetime.today()))
? ? ? ? break
#當輸入的賬號和密碼為空時,提示不能為空伟桅,并提示還有幾次剩余次數(shù)
? ? elif input_passwd=='' or input_name=='':
? ? ? ? print('賬號或密碼不能為空!')
? ? ? ? print('溫馨提示叽掘,您還有'+str(times)+'次機會!\n')
? ? else:
#當輸入的賬號和密碼不為空時且次數(shù)不等于0提示輸入錯誤楣铁,并提示還有幾次剩余次數(shù)
? ? ? ? if times !=0:
? ? ? ? ? ? print('\n賬號或密碼輸入錯誤')
? ? ? ? ? ? print('溫馨提示,您還有'+str(times)+'次機會!\n')
#當次數(shù)等于0時更扁,提示程序結(jié)束
? ? ? ? else:
? ? ? ? ? ? print('您當前三次輸入錯誤盖腕,程序結(jié)束!')
? ? times-=1