Skip to content

Instantly share code, notes, and snippets.

@vinaykudari
Created July 21, 2018 19:30
Show Gist options
  • Save vinaykudari/1e456fcd704ea3dbec24326205bc9b62 to your computer and use it in GitHub Desktop.
Save vinaykudari/1e456fcd704ea3dbec24326205bc9b62 to your computer and use it in GitHub Desktop.
Lambda function
# lambda function
get_double = lambda x: x * 2
print(get_double(5))
# Output
>> 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment