Answers for "store dictionary of dictionary python"

0

python save a dictionary as an object

import pickle 
dictionary_data = {"a": 1, "b": 2}

# SAVE
with open("data.pkl", "wb") as pkl_handle:
	pickle.dump(dictionary_data, pkl_handle)

# LOAD
with open("data.pkl", "rb") as pkl_handle:
	output = pickle.load(pkl_handle)
    
print(output)
Posted by: Guest on November-13-2020
0

how to store the variable in dictionary

>>> mydict = {"message": {"hello": 123456}}
>>> print(mydict['message'])
{'hello': 123456}
>>> print(mydict['message']['hello'])
123456
Posted by: Guest on April-25-2020

Code answers related to "store dictionary of dictionary python"

Browse Popular Code Answers by Language