python第三天

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python第三天相关的知识,希望对你有一定的参考价值。

  其实都是很多天了,很抱歉对不起自己,不过都是在学习,顺便把自己写的代码附上去吧,下面写的是一个登陆界面的输入过程,很简陋,也当做是个作业吧,顺便也是放弃了sublime,选择了pycharm

_user="steven"
_password=str(123456)
count=0
while count<=2:
    user=input(‘name:‘)
    password=input(‘password:‘)
    if _user==user and _password==password:
        print(‘welcome  %s !‘%user)
        break
    else:
        print(‘name or password is worning‘)
        count+=1
        if count==3:
            wanted=input(‘还想玩吗?【y/n】\n‘)
            if wanted==‘y‘ or wanted==‘Y‘:
                count=0
if count==3:
    print(‘-------你他妈的傻逼吗?还在那尝试------‘)

  

以上是关于python第三天的主要内容,如果未能解决你的问题,请参考以下文章

Python 第三天

2018-10-11学习python第三天

python第三天

Python学习第三天(面向对象编程)01

python第三天作业

python练习第三天