模拟银行登陆
Posted xzkdpython
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模拟银行登陆相关的知识,希望对你有一定的参考价值。
#QQ632510661欢迎一起学习python
zh_word = str(632510661)
mm_word = str(980712)
def fun():
index = 3
while index:
zh = input("请输入账号:")
mm = input("请输入密码:")
index -= 1
if zh_word==zh and mm_word==mm:
print("欢迎来到我的python")
break
else:
print("输入错误"+"你还有"+str(index)+"次机会")
if index == 0:
print("累不累?还想继续尝试吗?")
s = int(input("请输入一个1继续,0退出:"))
if s == 1:
index = 3
print("好!有骨气!")
elif s == 0:
index = 0
print("聪明!")
else:
print("END")
print("你的操作过于频繁!")
return 0
fun()
以上是关于模拟银行登陆的主要内容,如果未能解决你的问题,请参考以下文章