标签: python character getch
在C / C ++中如果要输入一个没有在屏幕上打印任何内容的字符,可以使用getch()。有什么方法可以在python中做到这一点吗?
答案 0 :(得分:1)
使用getpass.getpass(),用于获取密码:
getpass.getpass()
>>> import getpass >>> a = getpass.getpass() Password: >>> a 'asdf'