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