ホームページ >バックエンド開発 >Python チュートリアル >Python Pickle ファイルに複数のオブジェクトを保存およびロードするにはどうすればよいですか?
Python Pickle ファイルでの複数のオブジェクトの保存とロード
Pickle ファイルに複数のオブジェクトを保存するには、次の手順に従います。
<code class="python">import pickle # Create a list of objects to be saved objects_to_save = [object1, object2, ...] # Open a binary file for writing with open('my_pickle_file', 'wb') as file: # Pickle each object and write it to the file for obj in objects_to_save: pickle.dump(obj, file)</code>
pickle ファイルから複数のオブジェクトをロードするには:
<code class="python"># Open the binary file for reading with open('my_pickle_file', 'rb') as file: # Load and print each object from the file while True: try: obj = pickle.load(file) print(obj) except EOFError: break</code>
追加の考慮事項:
以上がPython Pickle ファイルに複数のオブジェクトを保存およびロードするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。