how to get area of a circle code example
Example 1: area of a circle
def circle(radius):
return radius * math.pi * 2
Example 2: calculate area of circle
function calcAreaOfCircle(radius){
return Math.PI * r **2
}
function calcAreaOfCircle(diameter){
return Math.PI * (diameter / 2) **2
}