py3中输入密码时隐藏
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了py3中输入密码时隐藏相关的知识,希望对你有一定的参考价值。
# -*- coding:utf-8 -*- # Auther:Leon import getpass user=input("请输入账号:") pwd=getpass.getpass("请输入密码:") if user == "leon" and pwd == "leon" : print("logs-in successfully") else: print("Username or Password NG")ps:
Python实现星号遮掩的密码输入参考:http://blog.csdn.net/sbdxxcjh/article/details/39120095
以上是关于py3中输入密码时隐藏的主要内容,如果未能解决你的问题,请参考以下文章