Write a Python program to accept radius(R) and find the Area and Circumference
of a Circle. 5 M
Area = 3.14 * R * R
Circumference = 2 3.14 *R
Answers
Answered by
2
Answer:
radius = float(input("Enter the radius of the circle: "))
radius = float(input("Enter the radius of the circle: "))
area = 3.14 * radius * radius
circumference = 2 * 3.14 * radius
print(area)
print(circumference)
Similar questions