gpt4 book ai didi

python - 在python中输入隐藏密码

转载 作者:太空狗 更新时间:2023-10-29 20:27:46 25 4
gpt4 key购买 nike

我想使用:

import getpass
password = getpass.getpass("Enter your password:")
print password

在 winx64 上使用 python 2.7...第二行挂起。我没有看到对话框。 "输入您的密码:"

最佳答案

根据您上面的评论,您实际上是在 spyder 中使用 ipython。我在 Spyder 中遇到的 getpass 的唯一问题是他们的 Google code页。这些问题与您的问题完全相同,但评论中包含以下代码片段:

def spyder_getpass(prompt='Password: '):
set_spyder_echo(False)
password = raw_input(prompt)
set_spyder_echo(True)
return password

尝试使用上述方法(使用 raw_input 而不是 getpass)来获取所需的密码。

关于python - 在python中输入隐藏密码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10142947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com