What I've tried:
def is_this_5(x):
return [True for i in range(0, 1) if x == 5]
However, this returns [True] and even if that could be fixed I'm sure it could be better than what I've got anyways.
What I've tried:
def is_this_5(x):
return [True for i in range(0, 1) if x == 5]
However, this returns [True] and even if that could be fixed I'm sure it could be better than what I've got anyways.