How do you conceal the input of raw_input? For example, I want:
raw_input
password = raw_input("Password: ")
To be
Password: ******** #or Password: #hide the characters (i.e. no echo)
Instead of displaying the string. How can I do so?
Use getpass:
getpass
import getpass password = getpass.getpass('Password: ')