How to get asterisks during inputting password using getpass module in python?
actual Results:
import getpass
p=getpass.getpass("Enter the Password:")
Enter the Password:
print (p)
Output: password
Expecting results:
import getpass
p=getpass.getpass("Enter the Password:")
Enter the Password:********
print (p)
Output: password
Python Version: 2.7