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