1""" depends on the data type too """
2def callme(key1, key2):
3 print(key1, key2)
4
5obj1 ,obj2 = 6, 9
6obj3 = {
7 "key1": 1,
8 "key2": 2
9}
10callme(**obj3) # easy for calling functions
11print(obj1 ** obj2) # Here it is a operator (for calculating obj1 ^ obj2)
1# ** means modulus. or exponent
2x = 6
3y = 2
4print(x**y) # will print 6 raised to power 2