Skip to content

Instantly share code, notes, and snippets.

@vamsitallapudi
Created February 27, 2020 03:12
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/bede9d77f3937e532de09645cfb8b3c9 to your computer and use it in GitHub Desktop.
Save vamsitallapudi/bede9d77f3937e532de09645cfb8b3c9 to your computer and use it in GitHub Desktop.
# python program to print a square using lambda function
square = lambda x : x**2
print(square(3))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment