Hello,
This if statement is always returning true and I cannot see why. Could you guys tell me why?
menu = input("Choose what you would like to do:\n\n1. Work out how far you will travel with a set time and speed\n2. Work out the speed you will need to travel to do a certain distance in a specific time.\nChoice: ")
if(int(menu) != 1 or int(menu) != 2):
print("Error. Enter 1 or 2.")
menu = input("Choose what you would like to do:\n\n1. Work out how far you will travel with a set time and speed\n2. Work out the speed you will need to travel to do a certain distance in a specific time.\nChoice: ")