how to exponent a number by numbers in a list in python code example
Example: how to you raise and item to a power in python
x = 6**2
print (x)
#six is getting raised to the power of two
x = 6**2
print (x)
#six is getting raised to the power of two