When I try to print a conditional in Python, it doesn't return the actual result but the first string in the print statement.
letters = ['a', 'b', 'c', 'd', 'e']
print('a' or 'b' in letters)
This should print "True", but it instead prints
a
Why does this happen, and do you have anything to fix this? Thanks