Computer Science, asked by vaishnavirastogi4913, 6 months ago

Write a program to calculate and print the area
and circumference of
a circle. In python. ​

Answers

Answered by abhaiasngh
3

Explanation:

Python Program to find Diameter Circumference and Area Of a...

Diameter of a Circle = 2r = 2 * radius.

Area of a circle is: A = πr² = π * radius * radius.

Circumference of a Circle = 2πr = 2 * π * radius.

Answered by kookiesandmilk
1

Answer:

Circle

c=float(input("Enter radius"))

cr=3.14*c*c

print("area of circle is",cr)

Similar questions