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
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