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.
我需要类似的东西raw_input,但不显示您正在输入的文本。我也试过getpass了,但它仍然显示我刚刚输入的内容。
raw_input
getpass
getpass在命令提示符或 python 脚本中工作得很好。
import getpass x = getpass.getpass("Input something: ") print x
getpass()在 IDLE 中不起作用。在命令提示符或终端上尝试。
getpass()