In the function circleArea(r)
, the parameter is r
.
So the correct response is:
r
def circleArea(r):
area = math.pi * r * r
return area
(1 point)
Responses
pi
pi
area
area
r
r
def
1 answer
In the function circleArea(r)
, the parameter is r
.
So the correct response is:
r