Password Strength Checker

Ask the user to enter a password. If the password is less than 8 characters, print “Weak password”. Otherwise, print “Password accepted”.
Example:
Input: abc123
Output: Weak password

Scroll to Top