Is there any way of make python have a password input???
instead of:
Whats your password?
password <--- this is a user input
I need:
Whats your password?
******** <--- this is a user input
Is that possible in python???
Is there any way of make python have a password input???
instead of:
Whats your password?
password <--- this is a user input
I need:
Whats your password?
******** <--- this is a user input
Is that possible in python???
You can hide the input by using getpass
:
import getpass
password = getpass.getpass("Whats your password?")