Write a python program to accept the value of radius and print the area and perimeter of a circle.
PLEASE I NEED THIS REALLY FAST
Answers
Answered by
0
Answer:
rad = float(input("Enter radius:"))
area = 3.14*rad*rad
print("The area of the circle with radius" , rad , "is" , area)
Explanation:
Similar questions