I'm trying to use getpass to hide the input but it just gives me this error:
"Warning: QtConsole does not support password mode, the text you type will be visible."
I'm using Spyder. Here is my code:
import getpass
pswd = getpass.getpass('Password:')
if pswd== 'whatever':
print ('\nACCESS GRANTED')
else:
print('\nACCESS DENITED')