We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
str = raw_input()
print any(c.isalnum() for c in str)
print any(c.isalpha() for c in str)
print any(c.isdigit() for c in str)
print any(c.islower() for c in str)
print any(c.isupper() for c in str)
String Validators
You are viewing a single comment's thread. Return to all comments →
worked for me