"Peter Otten" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]
>> How do I do in Python?
> if condition1 and condition2: # &&
> doThis
> elif condition3 or condition4: # ||
> doThat
> See the pattern?
if condition1 and condition2:
doThis
elif condition3 or condition4:
doThat
--
http://mail.python.org/mailman/listinfo/python-list
