본문 바로가기

Python_Matter/[Check_IO]ElectronicStation

(5)
Acceptable Password VI 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, but it cannot consist of just digits; having numbers or containing just numbers does not apply to the password longer than 9. a string should not contain the word "password" in any case; should contain 3 different..
Acceptable Password V 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, but it cannot consist of just digits; having numbers or containing just numbers does not apply to the password longer than 9. a string should not contain the word "password" in any case. Input: A string. Output: A..
Acceptable Password IV 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, but it cannot consist of just digits; having numbers or containing just numbers does not apply to the password longer than 9. Input: A string. Output: A bool. Example: is_acceptable_password('short') == False is_a..
Acceptable Password III 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, but cannot consist of just digits. Input: A string. Output: A bool. Example: is_acceptable_password('short') == False is_acceptable_password('muchlonger') == False is_acceptable_password('ashort') == False is_acce..
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') == T..