Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Created February 24, 2022 00:51
Show Gist options
  • Save fatosmorina/d826c9b4f32cd9c1b808591fac72fc54 to your computer and use it in GitHub Desktop.
Save fatosmorina/d826c9b4f32cd9c1b808591fac72fc54 to your computer and use it in GitHub Desktop.
import json
json_string = '[{"first": 1, "second":2}, {"third":3, "fourth":4}]'
json_as_list = json.loads(json_string)
print(json_as_list)
# [{'first': 1, 'second': 2}, {'third': 3, 'fourth': 4}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment