Heim >Backend-Entwicklung >Python-Tutorial >Wie speichere und lade ich mehrere Objekte in einer Python-Pickle-Datei?
Mehrere Objekte in einer Python-Pickle-Datei speichern und laden
Um mehrere Objekte in einer Pickle-Datei zu speichern, befolgen Sie diese Schritte:
<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>
So laden Sie mehrere Objekte aus einer Pickle-Datei:
<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>
Zusätzliche Überlegungen:
Das obige ist der detaillierte Inhalt vonWie speichere und lade ich mehrere Objekte in einer Python-Pickle-Datei?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!