Skip to content

Instantly share code, notes, and snippets.

@Allwin12
Created January 22, 2020 05:24
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 Allwin12/f1035799b67356bd35bffe63b3929544 to your computer and use it in GitHub Desktop.
Save Allwin12/f1035799b67356bd35bffe63b3929544 to your computer and use it in GitHub Desktop.
mock_data = {
"id": 1,
"first_name": "Cory",
"last_name": "Schimmang",
"email": "cschimmang0@skype.com",
"gender": "Female",
"ip_address": "186.239.104.33"
}
for x in mock_data.values():
print(x)
"""
1
Cory
Schimmang
cschimmang0@skype.com
Female
186.239.104.33
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment