Created
July 16, 2015 04:40
-
-
Save offby1/94e68f38f0997b85f675 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def returns_a_list(): | |
| return [1, 2, 3] | |
| l = returns_a_list() | |
| print(l) | |
| # python wat.py | |
| # [1, 2, 3] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment