Computer Science, asked by lokanthari, 3 months ago

python program to find the area of a circle with radius 4 cm

Answers

Answered by atrs7391
9

r = float(input("Enter the radius of the circle: "))

print("Area of the circle =", 3.14 * (r * r))

Similar questions