You can create your list comprehension like this, which returns the value and its reasons (or an empty list) for why it is bad:
def why_bad(value):
reasons = []
if value % 2:
reasons.append('not divisible by two')
return reasons
all_values = [1,2,3]
bad_values = [(i, why_bad(i)) for i in all_values]
print bad_values
To extend the example, you can add elifs for every different conditional check for why a value is bad and add it to the list.
RETURNS:
[(1, ['not divisible by two']), (2, []), (3, ['not divisible by two'])]
If all_values has only unique values, though, you might consider creating a dictionary rather than a list comprehension:
>>> bad_values = dict([(i, why_bad(i)) for i in all_values])
>>> print bad_values
{1: ['not divisible by two'], 2: [], 3: ['not divisible by two']}