use of // in python code example
Example 1: ** in python
#** is the exponent symbol in Python, so:
print(2 ** 3)
#output: 8
Example 2: //= 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