fork download
  1. # your code goes here
  2. import json
  3.  
  4. # JSON string:
  5. # Multi-line string
  6.  
  7. x= "[{}, {}]"
  8. # parse x:
  9. y = json.loads(x)
  10.  
  11. # Print the data stored in y
  12. print(y)
Success #stdin #stdout 0.02s 7640KB
stdin
Standard input is empty
stdout
[{}, {}]