August 2018
Intermediate to advanced
366 pages
10h 14m
English
Luckily, the Python standard library provides an easy way to input passwords from a prompt without showing them back:
>>> import getpass >>> pwd = getpass.getpass() Password: >>> print(pwd) 'HelloWorld'