Say, I have a function in Python where
if (age<20): young=True if (age>80): old=True My question is, if I want to call or print the values which are held as True. I want to write this line: The person wasn't selected for the job because he was old/young etc. One person could also violate many criteria. How would I do that?