Write a python program to print the area of a Circle.
(Area = 3.14*r *r).
The value of r will be input by the user. Answer pls
Answers
Answered by
1
Answer:
import math
r = float(input("Enter the radius of the circle: "))
area = math.pi* r * r
print("%.2f" %area)
Similar questions