Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

write json to file python

# to write on file
# data_dict is a dictionary

import json
        
with open('data.json', 'w') as f:
	json.dump(data_dict, f)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #write #json #file #python
ADD COMMENT
Topic
Name
4+6 =