Re: [Tutor] Hands-on beginner's project?

2008-06-25 Thread Jacqui
LOL You rock! That's definitely better than my example. I can't wait to get better at this! :-D On Wed, 2008-06-25 at 09:22 -0400, bob gailer wrote: > > > > Even better is to define a Chapter class, with the various properties > and methods pertinent thereto, then make each chapter an instan

Re: [Tutor] Hands-on beginner's project?

2008-06-25 Thread Jacqui
print "to plummet to your death" def main(): chapter1() print "You come across a chasm, would you like to jump?" jumpQ = raw_input("y/n: ") if jumpQ == "y": chapter2() elif jumpQ == "n": chapter3() main() a