Answers for "dumps in python"

1

json load

import json

with open('path_to_file/person.json') as f:
  data = json.load(f)
Posted by: Guest on October-27-2020
-1

dump()

# dump()

import pickle

data1 = {'a': [1, 2.0, 3, 4+6j],
         'b': ('string', u'Unicode string'),
         'c': None}
               
selfref_list = [1, 2, 3]
selfref_list.append(selfref_list)
               
output = open('data.pkl', 'wb')
               
# Pickle dictionnary using protocol 0.
pickle.dump(data1, output)
               
# Pickle the list using the highest protocol available.
pickle.dump(selfref_list, output, -1)
               
output.close()
Posted by: Guest on March-13-2020

Python Answers by Framework

Browse Popular Code Answers by Language