• NEW test to add

Question related to mission House Password

 

Please add new test to check for example

checkio('ASDasd12345!*') == True

because when I pass using this construction

def checkio(data):    
    return len(data)>=10 and data.isalnum() and not(data.isdigit()) and not(data.islower()) and not (data.isupper())

Follow for the task password can contain special symbols like ('*', '!')

6