write a python program to input the area or perimeter of a circle using if else statement
Answers
Answered by
0
Answer:
from math import pi.
r = float(input ("Input the radius of the circle : "))
print ("The area of the circle with radius " + str(r) + " is: " + str(pi * r**2))
Explanation: please mark me brainlist
Similar questions