1. 程式人生 > >使用者三次登陸小程式

使用者三次登陸小程式

count=0
while count<3:
    user=input('>>>:')
    pwd=input('>>>:')
    if user=='alex' and pwd=='123':
        print('welcome')
        print('..........')
        break
    else:
        print('user or pwd erro')
    count=count+1