if statements
calder
calder at email.in.signature
Fri Jan 18 11:08:35 EST 2002
More information about the Python-list mailing list
Fri Jan 18 11:08:35 EST 2002
- Previous message (by thread): if statements
- Next message (by thread): if statements
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
"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] **************************
- Previous message (by thread): if statements
- Next message (by thread): if statements
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list