My code :
from getpass import getpass
def display_credentials():
website = input("Enter the name of the website:")
password = getpass("Enter master password: ")
print(website)
print(password)
if __name__ == "__main__":
display_credentials()
Output: Enter the name of the website:yahoo
Question: The next line does not get executed at all. Not sure what's the error here. I want the next line to be executed(asking password) after I input the name of website.