You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 

12 lines
184 B

  1. airports = {
  2. "ORY": "Orly",
  3. "LAX": "Los Angeles",
  4. }
  5. print("Where are you going?")
  6. a = input().upper()
  7. if a in airports:
  8. print(airports[a])
  9. else:
  10. print(a, "not found")