Report Bug
Qus : Which method is used to read the entire content of a file as a string in Python?
Qusपायथन में फ़ाइल के पूरे डाटा को स्ट्रिंग के रूप में पढ़ने के लिए किस फंक्शन का उपयोग किया जाता है?

A. read()
B. readline()
C. readlines()
D. load()


Solution
A. read()






Report Bug