본문 바로가기

전체 글

(1835)
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..
Date and Time Converter Quiz> Computer date and time format consists only of numbers, for example: 21.05.2018 16:30 Humans prefer to see something like this: 21 May 2018 year, 16 hours 30 minutes Your task is simple - convert the input date and time from computer format into a "human" format. example Input: Date and time as a string Output: The same date and time, but in a more readable format Example: date_time("01.01..
Three Words Quiz> We have prepared a set of Editor's Choice Solutions. You will see them first after you solve the mission. In order to see all other solutions you should change the filter. train Let's teach the Robots to distinguish words and numbers. You are given a string with words and numbers separated by whitespaces (one space). The words contains only letters. You should check if the string contains ..
Home Map Congratulations! Your first island has been opened. Here you'll find slightly more complicated missions, but also more islands can become available for you. Enjoy! Between Markers https://py.checkio.org/en/mission/between-markers https://developer-ankiwoong.tistory.com/872 First Word https://py.checkio.org/en/mission/first-word https://developer-ankiwoong.tistory.com/873 Split List https://py.ch..