You are viewing a single comment's thread. Return to all comments →
if __name__ == '__main__': s = input() print(any(list(map(lambda x : x.isalnum(), s)))) print(any(list(map(lambda x : x.isalpha(), s)))) print(any(list(map(lambda x : x.isdigit(), s)))) print(any(list(map(lambda x : x.islower(), s)))) print(any(list(map(lambda x : x.isupper(), 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 →