I am slightly confused on what the **
operator means in python
import math
radius = raw_input("Enter your radius")
area_of_circle = radius ** math.pi
print area_of_circle
What I am trying to do is figure out what the **
operator would do. This is for a problem on Codeacademy, which involves finding the square root. Plese do not give me the answer just suggestions on a syntax to get the square root.
you can just run it and you will find that x*y means x to the power of y like 2**3=8