Write a python program to calculate the area of a circle.
ENJOY THE POINTS!
Answers
Answered by
5
Answer:
# Python Program to find Area Of Circle using Radius
PI = 3.14
radius = float(input(' Please Enter the radius of a circle: '))
area = PI * radius * radius
circumference = 2 * PI * radius
print(" Area Of a Circle = %.2f" %area)
print(" Circumference Of a Circle = %.2f" %circumference)
Hope this helps you.
Answered by
1
Answer:
The area of the circle is calculated by using the constant PI and the radius r.
please mark as brainlist answer
Similar questions