I'm supposed to write a script that asks for the radius of a circle and solves it for the area. I've tried googling it but I've all I've gotten are answers with import somewhere in the script or some really complex stuff that I don't understand and I'm not going to copy paste because I wouldn't learn anything from that.
print("What is the radius?")
radius=input()
def PI 3.14159
area=PI*radius**2
print("The area of the circle is",area)