Quick actions

cmd+k|ctrl+k

Navigation

Languages

PASSWORD_CHECKER

Snippet info

Language

Python

Visibility

public

Author

sermon0906

Created

2026-06-26T17:06:31.111941Z

Updated

2026-06-26T17:06:31.111941Z

username = input()
password = input()
hidden_password = '*' * len(password)
length = len(password)

print(f'{username}, your password is {hidden_password} and length of pass is {length}')
INFO