Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
376 views
in Technique[技术] by (71.8m points)

python - getpass.getpass() error without other code?

import getpass    
password=getpass.getpass(prompt="Password: ")
print(password)

This really simple code displays the error:

Warning (from warnings module):
  File "C:Python33libgetpass.py", line 92
    return fallback_getpass(prompt, stream)
GetPassWarning: Can not control echo on the terminal.
Warning: Password input may be echoed.
Password: 

It does work as an input but the prompt isn't working. Running python 33 64-bit, anyone know whats happening?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try running it on cmd.exe or windows PowerShell, instead of IDLE's.

i.e

> python myscript.py

Assuming you have the python executable on your path, and you're in the current directory of myscript.py.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...