vote up 1 vote down star

In C# we can do this:

		int i = 5;
		int ii = 10;
		if(i == 5 && ii == 10) {
			Console.WriteLine("i is 5, and ii is 10");

		}
		Console.ReadKey(true);

I tested this in Python:

                 i = 5
                 ii = 10
                 if i == 5 & ii == 10:
                          print "i is 5 and ii is 10";

But this doesn't print out "i is 5 and ii is 10".

What am I doing wrong?

flag
Just curious -- what caused you to think "&" was boolean and operation? Where did you learn this? It's a very interesting mistake, and I want to know more about how you got stated trying this. – S.Lott Mar 4 at 12:29
Yes, I am very curious as well. The first thing one would logically try is "&&" and not "&", especially if youre coming from C#. – mizipzor Mar 4 at 13:03
Perhaps when he got the syntax error for running the '&&', he removed one '&', and no syntax error occurred. – Selinap Mar 4 at 13:26

6 Answers

vote up 21 vote down

Try this:

i = 5
ii = 10
if i == 5 and ii == 10:
      print "i is 5 and ii is 10"

Edit: Oh, and you dont need that semicolon on the last line (edit to remove it from my code).

link|flag
The semicolon is useful if we want to combine lines of codes. – Selinap Mar 4 at 13:24
Combining lines is not the "pythonic" way though – Rodrigo Mar 4 at 20:45
Although you can combine lines, as Rodrigo says, its not "pythonic". Since in this particular case the semicolon had no effect at all I made a comment about its redundancy. I assumed the questioner was new to python and didnt want to bloat my answer as to what is "pythonic" and what semicolon does. – mizipzor Mar 5 at 9:06
vote up 6 vote down

& is used for bit-wise comparison. use and instead. and btw, you don't need semicolon at the end of print statement.

link|flag
vote up 10 vote down

The correct operator to be used are the keywords 'or' and 'and', which in your example, the correct way to express this would be:

if i == 5 and ii == 10:
    print "i is 5 and ii is 10"

You can refer the details in the "Boolean Operations" section in the language reference.

link|flag
vote up 5 vote down

You can also test them as a couple.

if (i,ii)==(5,10):
    print "i is 5 and ii is 10"
link|flag
The pedant in me wants to point out that you ought to say "tuple" instead of "couple" but I know what you meant. :) – Andrew Hare Mar 4 at 12:46
A couple is not a tuple? – Paul Mar 5 at 6:49
vote up -3 vote down

In python, we spell "&" as "and"

link|flag
More precisely we spell "&&" as "and". We spell "&" as "&" as in both C# and python these perform a bitwise, rather than logical, and operation. – Brian Mar 4 at 13:35
You are right, of course. Apologies. – tottinge Sep 8 at 14:00
vote up 9 vote down

As pointed out, "&" in python performs a bitwise and operation, just as it does in C#. and is the appropriate equivalent to the && operator.

Since we're dealing with booleans (i == 5 is True and ii == 10 is also True), you may wonder why this didn't either work anyway (True being treated as an integer quantity should still mean True & True is a True value), or throw an exception (eg. by forbidding bitwise operations on boolean types)

The reason is operator precedence. The "and" operator binds more loosely than ==, so the expression: "i==5 and ii==10" is equivalent to: "(i==5) and (ii==10)"

However, bitwise & has a higher precedence than "==" (since you wouldn't want expressions like "a & 0xff == ch" to mean "a & (0xff == ch)"), so the expression would actually be interpreted as:

if i == (5 & ii) == 10:

Which is using python's operator chaining to mean: does the valuee of ii anded with 5 equal both i and 10. Obviously this will never be true.

You would actually get (seemingly) the right answer if you had included brackets to force the precedence, so:

if (i==5) & (ii=10)

would cause the statement to be printed. It's the wrong thing to do, however - "&" has many different semantics to "and" - (precedence, short-cirtuiting, behaviour with integer arguments etc), so it's fortunate that you caught this here rather than being fooled till it produced less obvious bugs.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.