Password Checker
user_name = input("What is your username? ")
password = input("What is your password? ")
password_length = len(password)
hidden = "*" * password_length
print(f"{user_name}, your password {hidden} is {password_length} letters long.")INFO