python program to find the area of a circle with radius 4 cm
Answers
Answered by
9
r = float(input("Enter the radius of the circle: "))
print("Area of the circle =", 3.14 * (r * r))
Similar questions