有没有简单的方法来防止输入回声?

2023-11-30

如何防止输入时出现回声?

尝试过“getpass()”但没有运气。

在 Windows IDLE 上,它不起作用

    Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:03:43) [MSC v.1600 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> import getpass
>>> p = getpass.getpass(prompt="Input: ")
Warning: Password input may be echoed.
Input: abc <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< It still echos..

在Windows终端上,它可以工作

Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:03:43) [MSC v.1600 32 bit (In
tel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import getpass
>>> p = getpass.getpass(prompt="Input: ")
Input:
>>>

有没有简单的方法来防止输入回声?


我假设你的第一个例子是在 IDLE 中。

来自 getpass.win_getpass():

if sys.stdin is not sys.__stdin__:
    return fallback_getpass(prompt, stream)

IDLE 将 sys.stdin 替换为不同的对象。 getpass 检测到有人包装了 stdin,并且由于安全原因而失败。

See: http://bugs.python.org/issue9290

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

有没有简单的方法来防止输入回声? 的相关文章

随机推荐