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)

Ask a doubt
Davneet Singh's photo - Co-founder, Teachoo

Made by

Davneet Singh

Davneet Singh has done his B.Tech from Indian Institute of Technology, Kanpur. He has been teaching from the past 14 years. He provides courses for Maths, Science, Social Science, Physics, Chemistry, Computer Science at Teachoo.