Write a python program that accepts radius of a circle and prints its area.
Answers
Answered by
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
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