Re: [Tutor] Matching on multiple log lines

2006-10-30 Thread Matthew Warren
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Kent Johnson > Sent: 30 October 2006 11:55 > Cc: tutor@python.org > Subject: Re: [Tutor] Matching on multiple log lines > > wesley chun wrote: > >> so it's guaranteed that 'Writing Message to' > >>

Re: [Tutor] Help

2006-10-04 Thread Matthew Warren
I think eve-online is written in stackless python, they make quite a dealy about it on their site www.eve-online.com although I cant find the page myself right now due to filters in the way. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Kent John

Re: [Tutor] Creating Adventure Games Python Port - Chapter 2

2006-10-04 Thread Matthew Warren
> = > import random > > coin1 = 0 > coin2 = 0 > > coin1 = random.randint(1, 10) > coin2 = random.randint(1, 10) > > if coin1 <= 5: > print "Coin1 is Heads" > else: > print "Coin1 is Tails" > > if coin2 <= 5: > print "Coin2 is Heads" > else: > print "C