Menyimpan dan Memuatkan Berbilang Objek dalam Fail Acar Python
Untuk menyimpan berbilang objek dalam fail jeruk, ikut langkah berikut:
<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>
Untuk memuatkan berbilang objek daripada fail jeruk:
<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>
Pertimbangan Tambahan:
Atas ialah kandungan terperinci Bagaimana untuk Menyimpan dan Memuatkan Pelbagai Objek dalam Fail Acar Python?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!