Computer Science, asked by shaunroy2404, 8 months ago

How to Write a program to accept radius of a circle and find its perimeter and area with appropriate messages in python

Answers

Answered by prasanna26397
2

Answer:

r = int(input("Enter the radius: "))

print(" Area of the circle:", 3.14*r*r)

print(" Perimeter of the circle is: ", 2*3.14*r)

Similar questions