Advertisement
Arcot

ch8 ex1

Dec 8th, 2021
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.54 KB | None | 0 0
  1. apps={
  2. "movies": "Netflix",
  3. "shopping": "Amazon",
  4. "music": "Spotify",
  5. "food": "Deliveroo",
  6. "taxi": "Uber"
  7. }
  8.  
  9. resp=""
  10. while resp!="exit":
  11.   resp=input("what do you wnat to today")
  12.   if resp=="movies":
  13.     print("I will open",apps["movies"])
  14.   elif resp=="shopping":
  15.     print("I will open",apps["Amazon"])
  16.   elif resp=="music":
  17.     print("I will open",apps["Spotify"])
  18.   elif resp=="food":
  19.     print("I will open",apps["Deliveroo"])
  20.   elif resp=="taxi":
  21.     print("I will open",apps["Uber"])
  22.   elif resp=="exit":
  23.     print("exiting")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement