Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. Command = input()
  2.  
  3.  
  4.  
  5. if Command == "Team One":
  6. print(T1)
  7. input()
  8.  
  9. elif Command == "Team Two":
  10. print(T2)
  11. input()
  12.  
  13. elif Command == "Help":
  14. print("Team One - - - - Shows Team One")
  15. print("Team Two - - - - Shows Team Two")
  16. print("Help - - - - Shows A List Of Available Commands")
  17. input()
  18.  
  19. else:
  20. print ("Error <Command Not Found> Type 'Help' For A List Of Available Commands")
  21. input()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement