Skip to content

Instantly share code, notes, and snippets.

@roman-on
Created April 21, 2020 00:08
Show Gist options
  • Select an option

  • Save roman-on/05e919fcb827b9fab52f486fc5078223 to your computer and use it in GitHub Desktop.

Select an option

Save roman-on/05e919fcb827b9fab52f486fc5078223 to your computer and use it in GitHub Desktop.
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