首页 > 编程语言 > 详细

Python1 练习

时间:2017-06-29 16:54:06      阅读:229      评论:0      收藏:0      [点我收藏+]
#!/usr/bin/env python
#codingutf-8
count = 0
while count < 3:
   username = raw_input("USERNAME:")
   password = raw_input("PASSWORD:")
   if username == "user" and password == "123":
       print "welcome!!!"
       
break
   elif
username != "user" and password != "123":
       print "username or password wrong!!!"
   
elif username == "user" and password != "123":
       print "password is wrong!!!"
   
elif username != "user" and password == "123":
       print "username or password is wrong!!!"
   
count +=1
   
if count == 3:
       print "go away ang don‘t back!!!"

技术分享


Python1 练习

原文:http://12774035.blog.51cto.com/12764035/1943075

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!