Computer Science, asked by ajvismay2003, 4 months ago

Write a python program that accepts radius of a circle and prints its area.​

Answers

Answered by MrInocent
10

Answer:

Answer

from math import pi.

r = float(input ("Input the radius of the circle : "))

print ("The area of the circle with radius " + str(r) + " is: " + str(pi * r**2))

Answered by khushboo9657
2

from math import pi.

r = float(input ("Input the radius of the circle : "))

print ("The area of the circle with radius " + str(r) + " is: " + str(pi * r**2))

mark as brainliest

Similar questions