Quick actions

cmd+k|ctrl+k

Navigation

Languages

Exercise: Password Checker

Snippet info

Language

Python

Visibility

public

Author

andromachi.vasileiou

Created

2026-01-15T15:28:29.424535Z

Updated

2026-01-15T15:28:31.450625Z

username = input("what is your username?")

# password = input("what is your password?")

# print("passwprd {password} is {passwordlength} long")

# print("passwprd {secret} is {6} letters long")

print(f"{username}, your password {password} is {len(password)} letters long")

# print("*" * 10)
INFO