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