2 ** 3 == 8
# There are two ways of computing x^y in python: >>> 3 ** 4 81 >>> pow(3,4) 81
#The ouptut will be x ^ y x**y
>>> pow(5,3) 125
# x^2 : xsquared = x**2