Quick actions

cmd+k|ctrl+k

Navigation

Languages

Password-checker

Snippet info

Language

Python

Visibility

public

Author

narutouzumakiramen18

Created

2026-05-03T05:50:25.653641Z

Updated

2026-05-03T05:50:28.669704Z

user_name = input("Enter your name: ")
password = input("Enter a password: ")

pass_length = len(password)
secret = pass_length * '*'

print(f"Mr. {user_name}, your password is {secret} and length is {pass_length}")
INFO