Skip to content

Instantly share code, notes, and snippets.

@edwardinubuntu
Created March 21, 2018 02:34
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 edwardinubuntu/5276926a3d5a0bb233d76076d51c5c98 to your computer and use it in GitHub Desktop.
Save edwardinubuntu/5276926a3d5a0bb233d76076d51c5c98 to your computer and use it in GitHub Desktop.
dict_test
import json
sub_bills = {
"app": "Dana Mall",
"bc": "BNI",
"total": 1000000000
}
dict = {"code": 0,
"total": 1000,
"sub_bills": sub_bills
}
json = json.dumps(dict)
print('Result: ' + str(json))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment