Computer Science, asked by Anonymous, 3 months ago

write a program in python to find area and circumference of a circle


don't spam
spamming = reported ​

Answers

Answered by kayamramya2005
4

Explanation:

Allow users to input the radius of a circle. Using the radius value, this Python formula to calculate the Circumference, Diameter, and Area Of a Circle, Diameter of a Circle = 2r = 2 * radius, Area of acircle are: A = πr² = π * radius * radius and Circumference of a Circle = 2πr = 2 * π * radius. Print result

Attachments:
Answered by Anonymous
4

Answer:

Python program

Explanation:

r = int(input("Enter the radius of circle\n" ))

p= 22/7

c = 2*p*r

a = p*r*r

print("circumference of circle is" ,c)

print ("\n area of circle is ", a)

hope it helps bruhh

have a great day ahead

Similar questions