Skip to content

Instantly share code, notes, and snippets.

@vamsitallapudi
Created February 27, 2020 03:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vamsitallapudi/5aac48363bacb2eb355a10f9f6bacbf9 to your computer and use it in GitHub Desktop.
Save vamsitallapudi/5aac48363bacb2eb355a10f9f6bacbf9 to your computer and use it in GitHub Desktop.
# python program to find volume of a cube
volume = lambda l,b,h : l*b*h
print(volume(3,2,4))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment