python 练习 - 5 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.

Output: Is the password safe or not as a boolean or any data type that can be converted and processed as a boolean. In the results you will see the converted results.

题目来自  py.checkio.org


def checkio(data):
    digit = 0
    upper = 0
    lower = 0
    if len(data) < 10:
        return False
    else:
        for i in range(len(data)):
            if data[i].isdigit():
                digit += 1
            elif data[i].islower():
                lower += 1
            elif data[i].isupper():
                upper += 1
        if digit and lower and upper:
            return True
        else:
            return False

if __name__ == '__main__':
   print(checkio('wjsjakgjie'))
   print(checkio('bAse730onE'))
输出:
False
True

猜你喜欢

转载自blog.csdn.net/jiayangwu/article/details/79688153