Created
March 21, 2018 02:34
-
-
Save edwardinubuntu/5276926a3d5a0bb233d76076d51c5c98 to your computer and use it in GitHub Desktop.
dict_test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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