Question: 
Write a function to perform the mathematical bitwise xor operation across the given tuples.


Model's Code:
def bitwise_xor(tuple1, tuple2):
    return tuple(a ^ b for a, b in zip(tuple1, tuple2))



Sample Correct Code:
def bitwise_xor(test_tup1, test_tup2):
  res = tuple(ele1 ^ ele2 for ele1, ele2 in zip(test_tup1, test_tup2))
  return (res) 


Asserts:
assert bitwise_xor((10, 4, 6, 9), (5, 2, 3, 3)) == (15, 6, 5, 10)
assert bitwise_xor((11, 5, 7, 10), (6, 3, 4, 4)) == (13, 6, 3, 14)
assert bitwise_xor((12, 6, 8, 11), (7, 4, 5, 6)) == (11, 2, 13, 13)


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 399 of 974: 288/399 (72.18045112781954%): success