Created
April 21, 2020 00:08
-
-
Save roman-on/05e919fcb827b9fab52f486fc5078223 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
| choice = int(input()) | |
| 10 | |
| if choice == 1: | |
| print("You've chosen one") | |
| elif choice == 2: | |
| print("You've chosen two") | |
| elif choice == 3: | |
| print("You've chosen three") | |
| else: | |
| print("You've chosen something else") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment