-
-
Save kirillsulim/0e138beaba99ce782554 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
command = input("Введите команду") | |
if command == "exit": | |
exit() | |
else: | |
if command == "help": | |
help() | |
else: | |
if command == "hello": | |
print("hello!") | |
else | |
print("Нет такой команды") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment