a = False b = True print("a and b =", a and b) print("a or b =", a or b) print("not b =", not b) a and b = False a or b = True not b = False Operadores Python Bitwise Os operadores Bitwise executam operações bit a bit. Os operandos são considerados com...