0
#printing the area of circle
import math
r=input("The radius of the circle = ")
area= math.pi*r**2
print("The area of circle= ",area)

这是一个简单的代码,但我仍然得到 TypeError: unsupported operand type(s) for ** or pow(): 'str' and 'int' 但是如果我替换, r=int(input("The radius of the circle = ")) 那么程序运行任何建议为什么?

4

0 回答 0