题解 | #二进制位运算#
二进制位运算
https://www.nowcoder.com/practice/fa89690611f84cdcaba9a843e884310b
num_list = input().split() x = int(num_list[0]) y = int(num_list[1]) print(x & y) print(x | y)
参考https://zhuanlan.zhihu.com/p/420260582
注:在进行位运算时,无需转换为二进制,只需使用位运算符,Python就会按照二进制来进行计算,并且输出的运算结果为十进制
#Python学旅#