phoneMinutes = int(input("Please enter your desired call minutes."))
if phoneMinutes != 100 or 200 or 300:
print("false")
else:
print("true")
I am trying to make this program output "true" if the variable phoneMinutes is equal to either 100, 200 or 300, other-wise it will print "false". However, as soon as I start using or statements, every time I run the program, the output is "false". Not quite sure what's going wrong here so any suggestions would be welcome.