在python中是否有getch()模拟?

时间:2016-12-01 03:17:17

标签: python character getch

在C / C ++中如果要输入一个没有在屏幕上打印任何内容的字符,可以使用getch()。有什么方法可以在python中做到这一点吗?

1 个答案:

答案 0 :(得分:1)

使用getpass.getpass(),用于获取密码:

>>> import getpass
>>> a = getpass.getpass()
Password:
>>> a
'asdf'