Computer Science, asked by achyuttiwari88, 4 months ago

Write a code in Python to calculate the:
a) Circumference of a circle
b) Area of a circle
(Take a = 3.14)​

Answers

Answered by samridhis3251
1

Answer:

Explanation:

circum = 2πr

print("Enter Radius of Circle: ")

r = float(input())

c = 3.14*r*r

print("Circumference = ", c)

Similar questions