Pybites Logo

Determine the strength of a password

Level: Advanced (score: 4)

In this Bite you evaluate the strength of a password. Complete the function below and return a score from 0 to 5. Each of the following matches increases the score by one:

  1. Password has both lower- and uppercase letters,
  2. Password contains one or more numbers in addition to one or more characters,
  3. Password has one or more special characters,
  4. Password has a minimum length of 8 characters,
  5. Password starting 8 chars ("long enough") that doesn't have repeating characters ('1234abcbd' = good, '1234abbd' = bad, because it has a repeated b)

Let's brush up some regex skills and score those passwords, have fun!