checkio = lambda s: is( len(s) >= 10 and s.isdigit() and s.isalpha() and s.islower() and s.isupper() )
why this solution is wrong?