Re: [Tutor] Second follow up

2013-02-26 Thread Mark Lawrence
On 26/02/2013 16:01, Steven D'Aprano wrote: On 27/02/13 01:23, Jack Little wrote: How would I go from one def statement to another? I am developing a text based rpg. def first_function(): # write your code here, indented by FOUR spaces or ONE tab def second_function(): # NO INDENT

Re: [Tutor] Second follow up

2013-02-26 Thread Steven D'Aprano
On 27/02/13 02:12, Mark Lawrence wrote: On 26/02/2013 14:23, Jack Little wrote: How would I go from one def statement to another? I am developing a text based rpg. I'd like to see your project when it's finished as a text based rocket propelled grenade seems very interesting, or are we talki

Re: [Tutor] Second follow up

2013-02-26 Thread Steven D'Aprano
On 27/02/13 01:23, Jack Little wrote: How would I go from one def statement to another? I am developing a text based rpg. def first_function(): # write your code here, indented by FOUR spaces or ONE tab def second_function(): # NO INDENT # write your code here, indented by FOUR spa

Re: [Tutor] Second follow up

2013-02-26 Thread Mark Lawrence
On 26/02/2013 14:23, Jack Little wrote: How would I go from one def statement to another? I am developing a text based rpg. Sent from my iPod ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org

Re: [Tutor] Second follow up

2013-02-26 Thread Alan Gauld
On 26/02/13 14:23, Jack Little wrote: How would I go from one def statement to another? Type it in. Based on your message that's all I can suggest. Can you explain what you mean? What do you have in mind by a def statement? def foo(): print 'foo' def bar(): print 'bar' Those are two

Re: [Tutor] Second follow up

2013-02-26 Thread Dave Angel
On 02/26/2013 09:23 AM, Jack Little wrote: How would I go from one def statement to another? I am developing a text based rpg. Sent from my iPod ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.

[Tutor] Second follow up

2013-02-26 Thread Jack Little
How would I go from one def statement to another? I am developing a text based rpg. Sent from my iPod ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor