9
makosharkdb
1 7 16
407/ 445
Last seen 5 years ago
Member for 6 years, 6 months, 2 days
Difficulty Normal
Best reviews / Newest reviews
mako-makosharkdb 1
I don't know why but the following does't work well. (only provides False) ```python def checkio(data): return \ len(list(filter(str.islower, data))) > 0==\ len(list(filter(str.isupper, data))) > 0==\ len(data) >=10==\ len(list(filter(str.isdigit, data))) > 0==True ``` More