** - Performs exponential (power) calculation on operators
^ - Binary XOR
% - Modulus (Divides left hand operand by right hand operand and returns remainder)
// - divide with integral result (discard remainder)
Consider the below example:
a=10
b=20
print(a**b)
print(a^b)
print(a%b)
print(a//b)
Output:
100000000000000000000
30
10
0