Computer Science, asked by ramsmedicine, 1 month ago

Write a Python program to calculate the area of a circle (Area =3.14 * radius* radius)


pls answer

Answers

Answered by bhairaviM
2

Answer:

radius = int(input("Pls write the radius : "))

area = 3.14*radius*radius

print("The area of circle is, radius")

Explanation:

Pls mark me as brainliest Pls I need it most

Answered by vijthalapathy8
1

Answer:

Example: def find Area(r): PI = 3.14 return PI * (r*r); print("Area of circle = %. 6f" % find Area(6)); You can refer to the below screenshot to see the output for the python program to find the area of a circle using the function

HOPE THIS WILL HELP YOU !!

Similar questions