Re: [Tutor] Unknown Cause of Error

2013-05-11 Thread Steven D'Aprano
On 11/05/13 12:13, Jack Little wrote: I have a slight problem. My program will not open. What do you mean open? How are you trying to open it? What editor are you opening it in? Or do you mean your program will not *run*? How are you trying to run it? On top of that, I have written

Re: [Tutor] Unknown Cause of Error

2013-05-11 Thread Alan Gauld
On 11/05/13 07:12, Steven D'Aprano wrote: def menu(): print Welcome to Tomb Explorer! print A game of Exploration from Bulldog Development print Press [1] to Play or [2] to Exit menu1=raw_input( ) if menu1== 2: quit() if menu1== 1: room1()

[Tutor] Unknown Cause of Error

2013-05-10 Thread Jack Little
I have a slight problem. My program will not open. On top of that, I have written similar programs all to no avail. I am creating a text adventure and want there to be different rooms. Here is my code: def menu():     print Welcome to Tomb Explorer!     print A game of Exploration from

Re: [Tutor] Unknown Cause of Error

2013-05-10 Thread Amit Saha
On Sat, May 11, 2013 at 12:13 PM, Jack Little jacklittl...@yahoo.com wrote: I have a slight problem. My program will not open. On top of that, I have written similar programs all to no avail. I am creating a text adventure and want there to be different rooms. Here is my code: def menu():