码迷,mamicode.com
首页 > 其他好文 > 详细

简单的登陆脚本

时间:2015-06-12 01:10:00      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:python   linux.shell   

#!/usr/bin/python
whileTrue:
        input = raw_input("pelease inputyour name:")
        if input == ‘leo‘:
                password =raw_input("pelease input your password:")
                p = ‘123‘
                while password != p:
                        password =raw_input("Wrong password,input again:")
                else:
                        print "welcome loginon"
                        break
        else:
                print "sorry,user %s notfind" % input
[root@localhost script]# python while2.py 
pelease input your name:leo
pelease input your password:123
welcome login on


本文出自 “梁恩宇-9527” 博客,请务必保留此出处http://liangey.blog.51cto.com/9097868/1661027

简单的登陆脚本

标签:python   linux.shell   

原文地址:http://liangey.blog.51cto.com/9097868/1661027

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!