Exercise: Password Checker
# Exercise: Password Checker
username = input("Enter your username")
password = input("\nEnter your password")
pass_length = len(password)
hidden_pass = pass_length * '*'
print(f"\n{username}, your password is {hidden_pass}, is {pass_length} letters long")
INFO