Ok so I have two separate paths in my python code after a question and I need them to link together to avoid typing out the rest of my game twice and wasting space and code.
so as you can see, the last four or so lines are the same but with two different indentations. How can I make them both the same? So instead of having to write out:
print('''You carefully wrap the material around your head, wincing in pain everytime your hand bumps the wound.''')
print('''You wonder what the wound was from. It is unimportant however as the bleeding seems to be slowing.''')
Twice, I only have to write it once.