You are viewing a single comment's thread. Return to all comments →
if __name__ == '__main__': s = input() checks = [str.isalnum,str.isalpha,str.isdigit,str.islower,str.isupper] for check in checks: print(any([check(char) for char in s]))
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 →