If it is possible in python 3.6.1 how do I make a multichoice video game that can have two different ways to go down, like zork because if you make different choices in that game it can change your story, how can I make this possible, please reply asap. Thanks for the help.
The answer to how to make my own choice type game with many branches of it.
If it is possible in python 3.6.1 how do I make a multichoice video game that can have two different ways to go down, like zork because if you make different choices in that game it can change your story, how can I make this possible, please reply asap. Thanks for the help.
you can use
input()
to get user input and anif else
statement to execute code based off the input.