What will the output of this python program be?
def test_function( length, width, height):
print ("the area of the box is ",length*width*height)
return length*width*height
l = 12.5
w = 5
h = 2
test_function(l, w, h)
output: "the area of the box is 125.0"
Comments
Leave a comment