double splat operator python code example
Example: ** in python
# ** means modulus. or exponent
x = 6
y = 2
print(x**y) # will print 6 raised to power 2
# ** means modulus. or exponent
x = 6
y = 2
print(x**y) # will print 6 raised to power 2