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 中输入密码而不回显密码的标准方法是使用 getpass.getpass()。
但是,它不支持剪贴板输入 (ctrl-V),这是处理复杂、高度安全的密码时需要的。
有没有人想出一个解决方法(从crtl-V默默地获取密码)?
谢谢!
R。
作为替代,可以从剪贴板右键单击粘贴到命令提示符中。
不幸的是从不允许读取的 Windows C 中getpass.getpass()使用。getwch()CTRL+C
getpass.getpass()
getwch()
CTRL+C