I have been trying to put two options in an if statement but it never comes up with the correct variable.
if size == "8" or 10:
size_cost = 0
else:
size_cost = 2
print(size_cost)
When the user puts in a number that is bigger that 10 it should print out 2 but what it actaally prints out is 0. Can someone help please?