我正在使用 Python。我正在制作一个脚本,用户必须在终端中输入密码。
我已经使用 getpass 模块在这个网站上找到了解决方案。
new_password=getpass.getpass(prompt="Type new password: ")
问题是我收到警告,并且密码输入也会显示。
Warning (from warnings module):
File "C:\Python34\lib\getpass.py", line 101
return fallback_getpass(prompt, stream)
GetPassWarning: Can not control echo on the terminal.
Warning: Password input may be echoed.