Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I ran across the caret operator in python today and trying it out, I got the following output:

>>> 8^3
11
>>> 8^4
12
>>> 8^1
9
>>> 8^0
8
>>> 7^1
6
>>> 7^2
5
>>> 7^7
0
>>> 7^8
15
>>> 9^1
8
>>> 16^1
17
>>> 15^1
14
>>>

It seems to be based on 8, so I'm guessing some sort of byte operation? I can't seem to find much about this searching sites other than it behaves oddly for floats, does anybody have a link to what this operator does or can you explain it here?

share|improve this question
3  
For integers, same thing it does in C. ^_- – Mike DeSimone Mar 16 '10 at 0:52
3  
FYI, from the python shell, you can type help('^') – seth Mar 16 '10 at 1:00
2  
@seth: help('^') does nothing in my Python 2.6.1 (apple build). @S.Lott: do you mean this (docs.python.org/reference/…) when you're saying "completely covered"?. Seems a bit sparse for someone unfamiliar with the concept... – ChristopheD Mar 16 '10 at 6:36
2  
Thanks all, I guess if I knew it was a bitwise operator I would have known right where to look, but I didn't, hence the question :) Thanks all for your answers they were each helpful and now I know a little bit more! :) – Fry Mar 16 '10 at 15:52
2  
I tried this in my interpreter (2.5.4) and got: >>> help('^') no Python documentation found for '^' – Fry Mar 16 '10 at 20:05
show 4 more comments

3 Answers

up vote 33 down vote accepted

It's a bitwise XOR (exclusive OR).

It results to true if one (and only one) of the operands (evaluates to) true.

To demonstrate:

>>> 0^0
0
>>> 1^1
0
>>> 1^0
1
>>> 0^1
1

To explain one of your own examples:

>>> 8^3
11

Think about it this way:

1000  # 8 (binary)
0011  # 3 (binary)
----  # APPLY XOR ('vertically')
1011  # result = 11 (binary)
share|improve this answer
4  
A slightly more illustrative example might include both numbers having 1 in the same bit to make it clear that 1 xor 1 = 0. – Mike Graham Mar 16 '10 at 2:36

It invokes the __xor__() or __rxor__() method of the object as needed, which for integer types does a bitwise exclusive-or.

share|improve this answer
+1 for pointing out what it really does, outside of the integer operation. – Mike DeSimone Mar 16 '10 at 3:36

It's a bit-by-bit exclusive-or. Binary bitwise operators are documented here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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