본문 바로가기

Python_Matter/[Check_IO]ElectronicStation

Acceptable Password II

반응형

Quiz>

In this mission you need to create a password verification function.

 

Those are the verification conditions:

 

the length should be bigger than 6;

should contain at least one digit.

 

Input: 

A string.

 

Output:

A bool.

 

Example:

is_acceptable_password('short') == False
is_acceptable_password('muchlonger') == False
is_acceptable_password('ashort') == False
is_acceptable_password('muchlonger5') == True
is_acceptable_password('sh5') == False

 

How it’s used:

For password verification form. Also it's good to learn how the task can be evaluated.

 

# Taken from mission Acceptable Password I

def is_acceptable_password(password: str):
    if len(password) > 6:
        return True
    else:
        return False



def is_acceptable_password(password: str) -> bool:
    # your code here
    return False


if __name__ == '__main__':
    print("Example:")
    print(is_acceptable_password('short'))

    # These "asserts" are used for self-checking and not for an auto-testing
    assert is_acceptable_password('short') == False
    assert is_acceptable_password('muchlonger') == False
    assert is_acceptable_password('ashort') == False
    assert is_acceptable_password('muchlonger5') == True
    assert is_acceptable_password('sh5') == False
    print("Coding complete? Click 'Check' to earn cool rewards!")

 

Solve>

1. 길이가 6이상이고 숫자를 포함하고 있으면 참

def is_acceptable_password(password: str):
    if len(password) > 6 and any(map(str.isdigit, password)):
        return True

 

2. 그 외에는 거짓

def is_acceptable_password(password: str):
    else:
        return False

 

Code>

def is_acceptable_password(password: str):
    if len(password) > 6 and any(map(str.isdigit, password)):
        return True
    else:
        return False

 

Example>

if __name__ == '__main__':
    print("Example:")
    print(is_acceptable_password('short'))

    # These "asserts" are used for self-checking and not for an auto-testing
    assert is_acceptable_password('short') == False
    assert is_acceptable_password('muchlonger') == False
    assert is_acceptable_password('ashort') == False
    assert is_acceptable_password('muchlonger5') == True
    assert is_acceptable_password('sh5') == False
    print("Coding complete? Click 'Check' to earn cool rewards!")

 

Result>

Example:

False

Coding complete? Click 'Check' to earn cool rewards!

반응형

'Python_Matter > [Check_IO]ElectronicStation' 카테고리의 다른 글

Acceptable Password VI  (0) 2020.04.22
Acceptable Password V  (0) 2020.04.22
Acceptable Password IV  (0) 2020.04.22
Acceptable Password III  (0) 2020.04.22