Report Bug
Qus : A Function used for writing data in the binary format :
Qusबाइनरी फॉर्मेट में डेटा लिखने के लिए उपयोग किया जाने वाला एक फंक्शन:

A. write
B. output
C. send
D. dump


Solution
D. dump



Explanation
dump() method of pickle module is used to write binary data. Syntax: pickle.dum(python_variable,file_object)



Report Bug