Important Notice:

Course Content
File Processing in Python (Chapter-11) M3-R5
About Lesson

Pickle module:-

             पायथन एक मॉड्यूल प्रदान करता है जिसे पिकल मॉड्यूल कहा जाता है जिसमें दो फ़ंक्शन शामिल होते हैं जिनका उपयोग फ़ाइल में डेटा को पढ़ने या लिखने के लिए किया जाता है।

i. dump():-इस फ़ंक्शन का उपयोग फ़ाइल में सामग्री को डंप (लिखने) के लिए किया जाता है।

Syntax:-    structure-pickle.dump(<structure>,fileobject)

ii. load():-इस फ़ंक्शन का उपयोग किसी फ़ाइल से डेटा पढ़ने के लिए किया जाता है।

Syntax:-    structure-pickle.load(fileobject)

 

Pickle module:-

                Python provides a module called pickle module which consist two functions which is used to read or write data to the file.

i. dump():- This function is used to dump (write) the content to the file.

Syntax:-    structure-pickle.dump(<structure>,fileobject)

ii. load():- this function is used to read data from a file.

Syntax:-    structure-pickle.load(fileobject)

error: Content is protected !!