1 print(3^5) #0000 0011 ^ 0000 0101 相同得0不同得1 ------>0000 0110
2 print(2<<1) #2左移1位 右边补0
3 print(3>>1) #3右移1位 左边补什么看符号位,是1/0就补1/0
#十六进制应用:00 FF 00
#-------配色---- 红 绿 蓝
标签:十六进制,26,0000,0110,Python,08,00,FF,print
来源: https://www.cnblogs.com/crackerroot/p/15188946.html