I have been doing codewars challenges recently and stumbled across this: using the pipe symbol to add two items. I tried this in my python environment and am curious as to what this does and how this is different than just the + symbol.
print(5 | 2)
This of course outputs to 7. In the codewars problem I was looking at, one of the solutions used this to add two sets together. What does this mean?