This question originally asked (wrongly) what does "|" mean in Python, when the actual question was about Django. That question had a wonderful answer by Triptych I want to preserve.

link|improve this question
Nice try, but when you make the post CW, all the responses are CW as well. – Paul Tomblin Jan 6 '09 at 17:21
The community wiki checkbox is marked by default, you can deselect it to have a non community wiki answer – Vinko Vrsalovic Jan 6 '09 at 17:23
This just shouldn't be a CW post. It's not a "real" question because Vinko probably already knows the answer. But it's still real in that it's about programming and people can google for it and such. – Triptych Jan 6 '09 at 17:29
Yes, that's why I didn't want to let your answer go to waste – Vinko Vrsalovic Jan 6 '09 at 17:38
Thanks. I was a little annoyed, honestly, that a decent answer would go to waste because a question was improperly phrased. Interesting, the sort of problems that crop up as we trailblaze the wiki Q&A space. – Triptych Jan 6 '09 at 17:44
feedback

3 Answers

up vote 8 down vote accepted

In Python, the '|' operator is defined by default on integer types and set types.

If the two operands are integers, then it will perform a bitwise or, which is a mathematical operation.

If the two operands are set types, the '|' operator will return the union of two sets.

a = set([1,2,3])
b = set([2,3,4])
c = a|b  # = set([1,2,3,4])

Additionally, authors may define operator behavior for custom types, so if something.property is a user-defined object, you should check that class definition for an __or__() method, which will then define the behavior in your code sample.

So, it's impossible to give you a precise answer without knowing the data types for the two operands, but usually it will be a bitwise or.

link|improve this answer
feedback

Bitwise OR

link|improve this answer
feedback

It could also be "tricked" into a pipe like in unix shells, see here http://code.google.com/p/python-pipeline/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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