“маринованный сохранение дикта” Ответ

Сохраните дикт, чтобы марировать

import pickle

a = {'hello': 'world'}

with open('filename.pickle', 'wb') as handle:
    pickle.dump(a, handle, protocol=pickle.HIGHEST_PROTOCOL)

with open('filename.pickle', 'rb') as handle:
    b = pickle.load(handle)
Expensive Earthworm

мариновать словарь

import pickle #credits to stack overflow user= blender

a = {'hello': 'world'}

with open('filename.pkl', 'wb') as handle:
    pickle.dump(a, handle, protocol=pickle.HIGHEST_PROTOCOL)

with open('filename.pkl', 'rb') as handle:
    b = pickle.load(handle)

print (a == b)
Shiny Snail

маринованный сохранение дикта

import pickle

a = {'hello': 'world'}

with open('filename.pickle', 'wb') as handle:
    pickle.dump(a, handle, protocol=pickle.HIGHEST_PROTOCOL)

with open('filename.pickle', 'rb') as handle:
    b = pickle.load(handle)

print a == b
Underlyingglitch

Ответы похожие на “маринованный сохранение дикта”

Вопросы похожие на “маринованный сохранение дикта”

Больше похожих ответов на “маринованный сохранение дикта” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования