Advertisement
HackersXXX

car game my version

Nov 22nd, 2019
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.39 KB | None | 0 0
  1.  
  2. active = True
  3. print("Enter: help")
  4. input(">")
  5. print("> start to start the car\n> stop to stop the car\n> quit to finish")
  6.  
  7. while active:
  8.   command = input()
  9.   if command == "start":
  10.     print("Car started.")
  11.   elif command == "stop":
  12.     print("car stopped")
  13.   elif command == "quit":
  14.     break
  15.   elif command != "start" or "stop" or "quit":
  16.     print("i dont understand that")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement