Run ❯
Get your
own Python
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
# The | operator compares each bit and set it to 1 if one or both is 1, otherwise it is set to 0 # 6 = 0110 # 3 = 0011 # -------- # 7 = 0111 print(6 | 3)
7