Skip to content

Instantly share code, notes, and snippets.

@ishashankkumar
Created November 9, 2019 10:36
Show Gist options
  • Save ishashankkumar/70a4db8881478e4d8e14b8d1826afee3 to your computer and use it in GitHub Desktop.
Save ishashankkumar/70a4db8881478e4d8e14b8d1826afee3 to your computer and use it in GitHub Desktop.
>>> def test_one_line_expression(a,b):
... a,b = a+b, b+1
... return a,b
...
>>> print test_one_line_expression(5,6)
(11, 7)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment