I would like to give some feedback about ...
From: https://py.checkio.org/mission/acceptable-password-ii/solve/
HTTP_USER_AGENT:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36
Something is wrong with this mission
in self-checking there is this:
assert isacceptablepassword('muchlonger') == True
and in check it gives "Your result:False" for "muchlonger5" with code:
return len(password) > 6 and any([i.isdigit() for i in password])
Created at: 2020/03/21 12:08; Updated at: 2020/03/21 16:55