0
What is the mistake in this
import math x = float(input("enter the radius of the circle")) area = math.pi*x*x print("area of the circle is", area)
2 ответов
+ 2
I have it working fine in Code Playground
0
no error
import math x = float(input("enter the radius of the circle")) area = math.pi*x*x print("area of the circle is", area)