学习使用按位异或 ^ 。
0^0=0; 0^1=1; 1^0=1; 1^1=0
a = 0o77 b = a ^ 3 print(f'The a ^ 3 = {b}') b ^= 7 print(f'The a ^ b = {b}')