初级Python
Posted muguangfeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了初级Python相关的知识,希望对你有一定的参考价值。
Python编程
题目:用户账户三次登陆机会
i=1 while i<=3: user=input(">>>") pwd=input(">>>") if user=="alex"and pwd=="123": print("欢迎登陆") print("........") break else: print("用户名或密码错误") i+=1 if i>3: print("连续三次用户名或密码错误 冻结一小时!!!")
以上是关于初级Python的主要内容,如果未能解决你的问题,请参考以下文章