Quick actions

cmd+k|ctrl+k

Navigation

Languages

Password Checker

Snippet info

Language

Python

Visibility

public

Author

shigeotoga

Created

2026-08-05T09:05:51.297918Z

Updated

2026-08-05T09:10:22.294545Z

username = input("Username: ")
password = input("Password: ")

password_length = len(password)
password_hidden = '*' * password_length

print(f"\n{username}'s password {password_hidden} is {password_length} characters long")
INFO