Introduction to your Text Adventure

Writing a text adventure is a great way to learn Python.
In the style of a flick book we will design a game where the user makes choices. If they choose wisely they may live to fight another day.
However, if they make the wrong decision they may come to a gruesome end!
How gruesome is for you to decide.

Programming a 'text adventure' game allows you to use a range of programming techniques alongside your imagination.
We will not worry about graphics for now (althout we can use ASCII art).
But do not worry. This is going to be a fun game for you and your friends to play.

You can start fairly simple, coding IF statements, but will grow quickly to use more complex programming techniques
such as the random module, lists and functions.