
House Password

Stephan and Sophia forget about security and use simple passwords for everything. Help Nikola develop a password security check module. The password will be considered strong enough if its length is greater than or equal to 10 symbols, it has at least one digit, as well as containing one uppercase letter and one lowercase letter in it. The password contains only ASCII latin letters or digits.
Input: A password as a string (str).
Output: Is the password safe or not as a logic value (bool).
Examples:
assert checkio("ULFFunH8ni") == True assert checkio("aaaaaaaaaaaaaaaaaaaaa") == False assert checkio("aA1") == False assert checkio("awzbdzkfz") == False
How it is used: If you are worried about the security of your app or service, you can check your users' passwords for complexity. You can use these skills to require that your users passwords meet more conditions (punctuations or unicode).
Preconditions:
- re.match("[a-zA-Z0-9]+", password);
- 0 < len(password) ≤ 64.