Login module:
No matter which website we go to, we often encounter this situation. Let us log in to this website. The flow chart is as follows:
Ideas:
1. When we log in to the website, we first enter the user name , at this time, some websites will remind us whether the user name exists. If the user name we enter does not exist, a prompt will appear telling us that the user name does not exist. At this time, we need to re-enter it or choose to register. Of course, We just ask the user to re-enter here;
2. If the username exists, you need to enter the password. We know that when entering the password, we do not verify whether the password is correct. If Directly verifying whether the password is correct first will lose the role of letting the user enter the verification code. Therefore, we always do not verify the password first, but let the user enter the verification code, and first verify whether the verification code entered by the user is correct;
3. If the verification code is incorrect, ask the user to re-enter the verification code; if the verification code is correct, then it is time to return to re-verify whether the password is correct; if the password is correct, the login is successful. ; Otherwise, if the password is incorrect, the user needs to re-enter the password at this time. Since the user has already entered the user name at this time, there is no need to re-enter the user name, only the password and verification code are required; that is, Re-enter the password, and then enter the verification code; if the password is correct, the login is successful, otherwise re-enter the password and verification code. The verification code must be entered every time you enter the password;
To achieve The function of the above code must use a while loop. Since it is checked layer by layer, the input of the user name must be a loop until the user enters the correct verification code. The key is how to ensure that the user name is correct when the password or verification code is used. When you make a mistake, you don’t need to re-enter the username, otherwise it will be looked down upon. At this time, you need to consider that when the username is correct, you need to stop the cycle and the next time the user enters the password or verification code, it cannot be executed. When cyclically entering user names.
The code is implemented as follows:
def login(name,password):'''用户登录模块,用户登录时候的各种设置,本次实现功能''''''用户登录验证的时候,一般会先判断验证码是否正确,因此要让用户首先验证验证码'''active = Truewhile True:while active: username = input("请输入你的用户名:")'''首先验证用户名是否存在'''users = []for user_list in userfile.usernames: users.append(user_list[0])if username in users: active = Falseelse: print("对不起,您输入的用户名不存在,请重新输入:") pwd = input("请输入你的密码:")while True:'''加入一个用户输入验证码的模块,让用户输入验证码'''verification_code = str(random.randint(0,9)) + chr(random.randint(65,90)) + str(random.randint(0,9)) + chr(random.randint(97,122)) print(verification_code) test_num = input("请输入验证码:")if test_num == verification_code.lower() or test_num == verification_code.upper():'''无论用户输入大小写都可以验证成功''''''用户验证成功后,开始进行用户自己的认证,是否注册,或者用户名正确'''breakelse: print("您输入的验证码有误,请重新输入!")if [username,int(pwd)] in userfile.usernames: print("Successful!")return (username,pwd)else: print("对不起,您输入的密码有误,请重新输入:")
The above code Run as follows:
请输入你的用户名:geng 请输入你的密码:1233D0t 请输入验证码:3d0t 对不起,您输入的密码有误,请重新输入: 请输入你的密码:2228I9z 请输入验证码:8888您输入的验证码有误,请重新输入! 2G0j 请输入验证码:8888您输入的验证码有误,请重新输入! 7T1a 请输入验证码:7t1a 对不起,您输入的密码有误,请重新输入: 请输入你的密码:22227X4q 请输入验证码:7x4q 对不起,您输入的密码有误,请重新输入: 请输入你的密码:6662O0q 请输入验证码:2o0q Successful!('geng', '666')
The execution result of the above code is as shown above. When we want to stop a loop alone, we can set an identifier for this loop to open or close the loop. When the conditions are met, close this loop. Loop, so that this loop will not be opened when executing other programs;
active = True
while True:
while active ; #'' '
Users = [] for User_list in Userfile.usernames:
Users.appnd (User_list [ 0]) # #if username in users:
active = False
else:
print("
Sorry, the username you entered does not exist , please re-enter: ") pwd =
input("
Please enter your password: ")
With the above code, we have achieved such a function. When we want to stop this cycle, we Let the identifier of the inner loop be closed.
The above is the detailed content of Detailed introduction to the login module in python. For more information, please follow other related articles on the PHP Chinese website!

现在很多朋友喜欢用金山打字通这款软件,那么打字速度快慢严重影响工作效率,所以教大家练习打字速度,那么如何使用金山打字通练打字呢?今天小编就将金山打字通练习打数字教程如下讲述,希望对大家有所帮助。首先,打开金山打字软件然后,鼠标点击(新手入门)按钮接着,在新窗口中点击(数字键位)按钮随后,点击下方的(从头开始)按钮即可练习也可以点击(测试模式)按钮最后,输入数字进行练习就可以了此外金山打字通还有其他功能,能帮助大家更好的练习打字。1.选择练习模式:在软件界面上,您可以看到有不同的练习模式,例如“新

五笔打字,也称为五笔字型输入法,是一种高效的汉字输入方法。对于初学者来说,掌握五笔打字需要一定的时间和耐心,下面小编整理了五笔打字初学者的学习方法,一起来看看吧!一、理解五笔字型的原理五笔字型是一种基于笔画和字根的输入法。每个汉字都可以由不同的笔画和字根组合而成。因此,学习五笔字型的关键是理解笔画和字根的组合规律。在五笔字型中,有五个基本笔画:横、竖、撇、捺、折。这些基本笔画可以组合成不同的字根,而字根又可以组合成完整的汉字。二、学习字根和键位在五笔字型中,每个字母键都对应着一个或多个字根。因此

学习通作业被打回怎么重交?1、找到被打回作业的通知。2、找到被打回的作业的消息。3、点击那个蓝色的作业,就可以重新修改并提交作业了。怎么看学习通章节学习次数?首先,进入学习通,点击右下角的“我”。接着,在个人名字旁边,有一个小标志,点击。最后,该标志点开,就有学习通的使用次数了。

学习通是国内一款基于神经系统原理打造的知识传播与管理分享平台。它利用超星20余年来积累的海量的图书、期刊、报纸、视频、原创等资源,集知识管理、课程学习、专题创作为一体,为读者提供一站式学习与工作环境。许多学生在学习通网课中会遇到这样一个问题:如果自己的作业做错了,打回重做要怎么提交呢?今天就让小编为大家解答一下学习通作业被打回怎么重交,以及学习通怎么刷视频吧!一、学习通作业被打回怎么重交第一步打开学习通软件后,在首页点击“课程”第二步在课程列表中,你可以找到被退回的课程作业,“被打回的课程”点击

在Java中,正则表达式是非常常用的技术之一,几乎可以用于任何文本处理场景,如文本搜索、提取、分析、替换等。其强大的匹配能力可以大大提高开发效率,同时可以让代码更加简洁和易于维护。以下是一些Java中的正则表达式练习题,帮助大家熟练掌握正则表达式的应用。匹配中文字符正则表达式:[u4e00-u9fa5]解释:中文字符的Unicode码值范围是从4e00到9f

快对作业是一款专门为学生和老师们打造的一款作业辅导软件,它可以快速帮助大家找到正确的答案,并且有相应的解析,给学生们的学习带来了很大的帮助。那么你们知道快对作业的悬浮窗要怎么打开吗?让我们一起来了解一下吧。快对作业悬浮窗怎么打开 打开手机主屏幕上的设置。 向下滑动,然后单击[隐私]。 单击*,[权限管理]。 向下滑动,并单击[浮动窗口]。 在应用程序列表中找到快速配对,或使用搜索找到它,然后单击右按钮打开权限。功能介绍 1、搜索解析 扫描条形码秒出全本解析,关键词搜索、分类搜索

PHP作为一种广泛应用于Web开发领域的语言,掌握其基础知识对于从事PHP开发的人员至关重要。在面对PHP笔试基础不过关的情况下,提升自己的PHP能力是至关重要的。下面将从几个方面介绍如何提升PHP基础知识。首先,建议从基础开始系统学习PHP语言,包括语法、变量、常量、运算符、数组、函数等基本知识。可以通过阅读相关书籍、观看在线教程或参加培训课程来系统学习P

Java中如何实现一个简单的学生作业提交截止时间提醒系统?随着教育的发展和普及,学生们需要向老师提交各种作业。为了更好地管理学生作业,提醒学生按时提交作业,我们可以使用Java编程语言来实现一个简单的学生作业提交截止时间提醒系统。首先,我们需要设计一个学生类和作业类。publicclassStudent{privateStringname


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
