Last active
June 5, 2018 21:49
-
-
Save OtavioBraga/42b8551cd07624bbb3ad8ba47818286e to your computer and use it in GitHub Desktop.
lambda_python_functions.py
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
users = [ | |
{ | |
"id": 1, | |
"name": "Allan", | |
"age": 27, | |
"profile_picture": "http://…", | |
"city": "São Paulo" | |
}, | |
{ | |
"id": 2, | |
"name": "Julie", | |
"age": 29, | |
"profile_picture": "http://…", | |
"city": "Curitiba" | |
}, | |
{ | |
"id": 3, | |
"name": "Pedro", | |
"age": 31, | |
"profile_picture": "http://…", | |
"city": "Rio de Janeiro" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment