I'm having trouble understanding my logic in a simple Python statement. I'm trying to use 'not in' to test whether 's' or '5' is a part of the input but when I use either of them the same print statement is executed which says 's or 5 is not included'. Here is my code:
myinput = input('Enter input here')
if 's' or '5' not in myinput:
print('s or 5 is not included')
else:
print('s or 5 is included')
Could someone help me out? Thanks