Advertisement
Arcot

ch6 ex4

Oct 20th, 2022
1,103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. user_input=""
  2. while user_input!="exit":
  3.   user_input=input("Hey, what do you want to do today?").lower()
  4.   if user_input=="Shopping":
  5.     print("I will open amazon")
  6.   elif user_input=="Music":
  7.     print("I will open spotify")
  8.   elif user_input=="exit":
  9.     print("Exiting")
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement