0
1
HVHARIGOVIND VALSAKUMAR
PythonAreaCircle
HGV Public CookbookFunction to compute the area of a circle
from math import pi
def area_circle(radius):
return pi * radius ** 2
0
1
HVHARIGOVIND VALSAKUMAR
Function to compute the area of a circle
from math import pi
def area_circle(radius):
return pi * radius ** 2