You are viewing a single comment's thread. Return to all comments →
if name == 'main': s = input() print(*[any(map(f, s)) for f in [str.isalnum, str.isalpha, str.isdigit, str.islower, str.isupper]], sep='\n')
Seems like cookies are disabled on this browser, please enable them to open this website
String Validators
You are viewing a single comment's thread. Return to all comments →
if name == 'main': s = input() print(*[any(map(f, s)) for f in [str.isalnum, str.isalpha, str.isdigit, str.islower, str.isupper]], sep='\n')