字串和序列化


字串序列化是將物件狀態寫入位元組流的過程。 在python中,pickle庫用於啟用序列化。 該模組包含一個用於序列化和反序列化Python物件結構的強大演算法。 「Pickling」是將Python物件層次轉換為位元組流的過程,「unpickling」是相反的過程。

pickle模組的示列如下 -

import pickle

#Here's an example dict
grades = { 'Alice': 89, 'Bob': 72, 'Charles': 87 }

#Use dumps to convert the object to a serialized string
serial_grades = pickle.dumps( grades )
print(serial_grades)

#Use loads to de-serialize an object
received_grades = pickle.loads( serial_grades )
print(received_grades)

執行上面範例程式碼,得到以下結果 -