i know the mechanics behind from operator OR, but in this case why the output is 7 ? what is behind?
x = int(5) x = x | 3 print(x)
Thanks.