python简单实现用户表单登录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python简单实现用户表单登录相关的知识,希望对你有一定的参考价值。
实现简单的用户表单验证登录
user="desperado" pwd="123456" s=0 for i in range(10): if s < 3: username = input("用户名:") password = input("密码:") if username == user and password == pwd: print("welcome,login successful") break else: print("username or password input error") else: con=input("rester input:") if con == ‘y‘: s=0 continue else: print("input error,exit...") break s += 1
说明:循环10次,输入错误3次进行提示是否继续
以上是关于python简单实现用户表单登录的主要内容,如果未能解决你的问题,请参考以下文章