Can i get console input without echo in python?

Use getpass:

>>> from getpass import getpass
>>> getpass()
Password:
'secret'

Leave a Comment