Re: having problems with a multi-conditional while statement

2009-01-06 Thread bowman.jos...@gmail.com
roups.com>, > > > >  "bowman.jos...@gmail.com" wrote: > > Hi, > > > I'm trying to write a multi-conditional while statement, and am having > > problems. I've broken it down to this simple demo. > > > #!/usr/bin/python2.5 > > > condition1 = False

having problems with a multi-conditional while statement

2009-01-06 Thread bowman.jos...@gmail.com
Hi, I'm trying to write a multi-conditional while statement, and am having problems. I've broken it down to this simple demo. #!/usr/bin/python2.5 condition1 = False condition2 = False while not condition1 and not condition2: print 'conditions met' if condition1: condition2 = Tr