It s very helpful to clean up your code.
https://sublime.wbond.net/packages/Alignment
# before apple = "appel" tomate = "tomaat" orange = "sinaalapple" pear = "peer" # after apple = "appel" tomate = "tomaat" orange = "sinaalapple" pear = "peer"
# before apple = "appel" tomate = "tomaat" orange = "sinaalapple" pear = "peer" # after apple = "appel" tomate = "tomaat" orange = "sinaalapple" pear = "peer"
import json
dict = {"hello" : "dictionary", "this" : "is", "awesome" : {"sub" : "collection"}}
dictString= json.dumps(dict, sort_keys=False ,ensure_ascii=True ,indent=2)
fs = open("c:/dict.txt","w")
fs.write(dictString)
fs.close()
import json
fs = open("c:/dict.txt")
dict = json.load(fs)
fs.close()
print dict