def plane_ride_cost(city):
  if city== "Tampa" or "tampa":
      return 220 
  elif city== "Charlotte" or "charlotte":
      return 183
  elif city== "Pittsburgh" or "pittsburgh":
      return 222
  elif city== "Los Angeles" or "los angeles":
      return 474
In this code, which when submitted to codeacedemy it returns 220 only that is the first return value, except it nothing is checked I guess?
 
     
     
    