码迷,mamicode.com
首页 > 编程语言 > 详细

python输入输出之用户名密码

时间:2018-07-26 21:20:07      阅读:352      评论:0      收藏:0      [点我收藏+]

标签:else   and   mat   put   int   import   ...   模块   pytho   

方法一:

 1 # Author:yebo
 2 _username = "yebo"
 3 _password = 123
 4 
 5 username = input("username:")
 6 password = int(input("password:"))
 7 
 8 if _username == username and _password == password:
 9     print("welcome user {name}   loging......".format(name = username))
10 else:
11     print("invalid username or password!")

方法二(导入getpass模块使得输入密码时隐藏):

# Author:yebo
import getpass

username = input("username:")
password = getpass.getpass("password:")

info = ‘‘‘
username:{_username}
password:{_password}
‘‘‘.format(_username = username,_password = password)

print(info)

 

python输入输出之用户名密码

标签:else   and   mat   put   int   import   ...   模块   pytho   

原文地址:https://www.cnblogs.com/SongjiangCyclone/p/9373995.html

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