Okay, I need to write a maze solver for the maze in the text file (yes it is an assignment). I am not asking for a direct answer, I just want someone to propose ways of solving the maze( I also have to mark the paths taken in the maze). The problem is that I have learned nothing in the class the assignment is for because the professor tends to ramble on about anything from Star Trek jokes to WoW (seriously). As a result, I am completely lost on what to do on this assignment. The only code I have so far prints the maze:
def main():
mazefile = open('Python Maze.txt','r+')
for line in mazefile:
line = line.strip()
print line
mazefile.close()
main()