python and symbol code example
Example 1: //= python meaning
#Performs floor-division on the values on either side. Then assigns it to the expression on the left.
>>> a=6
>>> a//=3
>>> print(a)
2
Example 2: python ^ symbol
#bit-wise XOR operator
#1010 xor 0011 = 1001
print(10 ^ 3) # 9