Avoid mixing different actions! Each component must have a single responsibility.
Bad 
def add(x, y):
return x + y, x + y > 0
result, is_positive = add(1, 2)
Good 
def add(x, y):
return x + y
def is_positive(x):
return x > 0
result = add(1, 2)
is_positive(result)