Python tool to get a password from the user and display a masked value at the prompt.
pip install getpwd
>>>fromgetpwdimportgetpwd>>>secret=getpwd() Password: ********>>>print(secret) mysecret>>>fromgetpwdimportgetpwd>>>secret=getpwd("Please insert your password: ") Pleaseinsertyourpassword: ********>>>print(secret) mysecretIf you would like to make any comments then please feel free to email me at [email protected]