Skip to content

Instantly share code, notes, and snippets.

@ishashankkumar
Last active November 9, 2019 10:23
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 ishashankkumar/9ee9d90efd313b2f86f8ca80d1fddafb to your computer and use it in GitHub Desktop.
Save ishashankkumar/9ee9d90efd313b2f86f8ca80d1fddafb to your computer and use it in GitHub Desktop.
>>> def test_one_line_expression(a,b):
... a,b = b+1, a+b
... return a,b
>>> test_one_line_expression(5,6)
(7, 11)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment