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