New to coding, started writing python yesterday, I’m trying to make a code for the area of a circle.
pi=3.14
radius=input("enter radius here")
print("area="+str(pi*(radius**2)))
When I ran the code, it gave me a type error saying that unsupported operand type(s) for ** or pow(): 'str' and 'int.'
I don’t understand what this means, can someone help me write it?