String Validators Hackerrank Solution Python
For Explanation Watch Video:
Sample Input
qA2
Sample Output
True
True
True
True
True
Code:
if __name__ == '__main__': s = input() print(any(c.isalnum() for c in s)) print(any(c.isalpha() for c in s)) print(any(c.isdigit() for c in s)) print(any(c.islower() for c in s)) print(any(c.isupper() for c in s))
Comments
Post a Comment