raise number to power python code example
Example 1: how to take a number to a power in python
#16 to the power of 2
answer = 16**2
Example 2: 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