Skip to content

Instantly share code, notes, and snippets.

@computer-tutor
Created April 28, 2020 05:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save computer-tutor/f205c06855dd804336d0adebdd68a074 to your computer and use it in GitHub Desktop.
Save computer-tutor/f205c06855dd804336d0adebdd68a074 to your computer and use it in GitHub Desktop.
def volume(l=1,b=1,h=1):
return l*b*h
v1=volume()
v2=volume(10,5,2)
v3=volume(b=8)
v4=volume(5,7)
print(v1)
print(v2)
print(v3)
print(v4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment