Write a function to calculate volume of a box with appropriate default values for its parameters. Your function should have the following input parameters:
a) Length of box
b) width of box
c) height of box
Answer:
The function will be as follows:
def
box_volume
(l=
1
,b=
1
,h=
1
):
vol=l*b*h
return
(vol)