def check(str):
    if(str.isalnum())==True:
        return True
    if(str.isalpha())==True:
        return True
    if(str.isdigit())==True:
        return True
    if(str.islower())==True:
        return True
    if(str.isupper())==True:
        return True
if __name__ == '__main__':
    s = input()
    if(check(s)):
        print('True')
    else:
        print('False')
It is showing only one condition's result. For example, if I type qA2 it is showing one True instead of
True
True
True
True
True
 
     
     
     
    