My python code is stuck in a loop. I have tried making it break. But that has not helped.
It is below:
Adetails = input("Enter flight details (Please enter the three-letter code for the UK airport): ")
while Adetails != "LPL" or "BOH":
Adetails = input("Error three letter airport code invalid. Please enter either LPL or BOH: ")
Any help would be appreciated.