OK, here’s a piece of the script:
def start():
print "While exploring the ruins of a recently abandoned castle you stumble apon the entrance to what appears to be a dungeon. You are carrying on you a...
I keep getting the error
user@ubuntu:~/Documents/python$ python dungeon.py
File "dungeon.py", line 533
def start():
^
IndentationError: expected an indented block
I know this is probably obvious but does anyone have any clue as to what I’m doing wrong hear? I tried replacing the indent
with spaces only and tabs only but it still gives me this error. I appreciate any answers.
Looks like it expects
def start():to be indented. What does the code look like before that?