Hello
I have been following tutorial online about making a text based game. The code does not work if any one knows how to fix this or a tutorial that works would be most appreciated here is my code:
try: par = raw_input ('What direction do you want to go in? n = north...')
if par=='north' or par=='n':
print ('you are going north')
elif par=='south' or par=='s':
print ('you are going south')
the top if has the invalid syntax and gets highlighted red.
Thankyou
DrJonSmith