Computer Science, asked by rampadevi984, 3 months ago

write a program in python to display a menue for a circle perimeter of a circle​

Answers

Answered by akankshakamble6
3

Answer:

area of rectangle 3. area of square 4. circumference of circle. 2. See answers.

Top answer · 20 votes

choice = "Yes" while choice == "Yes": print("1. Area of a Circle.") print("2. Area ... More

5 votes

from math import pir = float(input ("area of circle : "))print ("The area of the circle with ... More

Answered by Anonymous
3

Answer:

hello,

Explanation:

#program to find the perimeter and area of a circle

r=eval(input("enter the radius"))

perimeter=2*3.14*r

area=3.14*r*r

print("perimeter  of the circle:",perimeter)

print("area  of the circle:",area)

hope it helps you

please mark brainliest

@ItzSnowySecret07

Similar questions