Skip to content

Instantly share code, notes, and snippets.

@kirillsulim
Created January 9, 2015 13:40
Show Gist options
  • Save kirillsulim/e914a0a8a08b0252be30 to your computer and use it in GitHub Desktop.
Save kirillsulim/e914a0a8a08b0252be30 to your computer and use it in GitHub Desktop.
command = input("Введите команду")
if command == "exit":
exit()
elif command == "help":
help
elif command == "hello":
print("hello!")
else
print("Нет такой команды")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment