python--学习--用户名和密码验证

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python--学习--用户名和密码验证相关的知识,希望对你有一定的参考价值。

#!/usr/bin/python3
user=‘whoooo‘
password="1234567"

name=input("请输入用户名:")
namepasswd=input("请输入密码:")
count1=1
count2=1
while name!=user :
print("careful ,you can only input 3 times,you have already iput ",count1,"times")
if count1<3:
name=input("请输入用户名:")
count1=count1+1
else:
print("you have already input 3 times,you have been permissed")
break
else:
while namepasswd!=password :
print("careful ,you can only input 3 times,you have already iput ",count2,"times")
if count2<3:
namepasswd=input("请输入密码:")
count2=count2+1
else:
print("you have already input 3 times,you have been permissed")
break
else:
print("welcome to mange your system")

以上是关于python--学习--用户名和密码验证的主要内容,如果未能解决你的问题,请参考以下文章

Python学习:8.小项目之登录注册验证

python 3.5 用户登录验证和输入三次密码锁定用户

学习python编码if语句优化

如何使用 Python 和/或 Javascript 自动验证 ngrok 密码?

python 密码验证

Python自动化开发学习22-Django下(Form)