I see a "pipe" character (|) used in a function call:
res = c1.create(go, come, swim, "", startTime, endTime, "OK", ax|bx)
What is the meaning of the pipe in ax|bx?
|
I see a "pipe" character (
What is the meaning of the pipe in |
||||
|
|
|
It is a bitwise OR of integers. For example, if one or both of |
|||||||||||||||||||
|
|
It is a bitwise-or. The documentation for all operators in Python can be found in the Index - Symbols page of the Python documentation. |
|||
|
|