fork download
  1. import json
  2. data = [ {'name_last': 'Bill', 'name_first': 'Cobol', 'address': '32 Main Street'} ]
  3. print('Data:', repr(data))
Success #stdin #stdout 0.02s 8176KB
stdin
Standard input is empty
stdout
('Data:', "[{'name_first': 'Cobol', 'name_last': 'Bill', 'address': '32 Main Street'}]")