python3, day1,登录接口
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3, day1,登录接口相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python # 登录接口 # Author: Msl23 _username = ‘Msl23‘ _password = ‘123.com‘ count = 0 while count < 3: username = input(‘Username: ‘) password = input(‘Password: ‘) if username == _username and password == _password: print(‘Welcome,User:%s‘ %(_username),‘Loging!‘) break else: print(‘Error: Username Or Password..‘) count = count + 1 else: print(‘Input the number three times..‘)
没有学调用文件这些,所以只能用已知知识来做一个简单的了!
以上是关于python3, day1,登录接口的主要内容,如果未能解决你的问题,请参考以下文章