if statements

calder calder at email.in.signature
Fri Jan 18 11:08:35 EST 2002


"maximilianscherr" <MaximilianScherr at T-Online.de> wrote:
>how can i include more stuff into if statements, like
>if var1 != 0 or var2 != 0 or var3 != 1:
>...
>
>is this the right way? caus emy script doen't seem to cae what i 
>wrote there, it just keeps on running

Cause it should be more like:

if (var1 != 0) or (var2 != 0) or (var3 != 1):

-- 
**************************
 Calder [calder at box43.pl]
        [gg 2174530]
**************************




More information about the Python-list mailing list