Skip to content

Instantly share code, notes, and snippets.

@tamert
Created September 9, 2020 19:07
Show Gist options
  • Save tamert/7febd622c59e8f081bb721fbe587c639 to your computer and use it in GitHub Desktop.
Save tamert/7febd622c59e8f081bb721fbe587c639 to your computer and use it in GitHub Desktop.
3_lamda_expression.py
toplama = lambda sayi_1, sayi_2 : sayi_1+sayi_2
print(toplama(11,11))
# out: 22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment