You are viewing a single comment's thread. Return to all comments →
if __name__ == '__main__': s = input() a=b=c=d=e=False for i in s: if i.isalnum(): a=True if i.isalpha(): b=True if i.isdigit(): c=True if i.islower(): d=True if i.isupper(): e=True _=[print(i) for i in [a, b, c, d, e]]
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 →