Computer Science, asked by saifshariff76, 17 days ago

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