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.
- Prepare
- Python
- Strings
- String Validators
- Discussions
String Validators
String Validators
Sort by
recency
|
1958 Discussions
|
Please Login in order to post a comment
For Python3 Platform
if name == 'main': s = input() print(any(i.isalpha() for i in s) and any(i.isdigit() for i in s) ) print(any(i.isalpha() for i in s)) print(any(i.isdigit() for i in s)) print(any(i.islower() for i in s)) print(any(i.isupper() for i in s))