Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 在 Python 中获取命令行密码输入
我想知道如何在 python 上输入密码,如果你不知道我在说什么,我的意思是如果我输入类似“hello”的内容,它会添加“*****”而不是像你在输入一样在密码中
看getpass。您可以将其用作:
getpass
from getpass import getpass passwd = getpass()
但是,它不打印星星。