Report Bug
Qus : Which of the following is the correct way to write multiple lines to a file in Python?
Qusपायथन में किसी फ़ाइल में एक से अधिक पंक्तियाँ लिखने का सही तरीका निम्नलिखित में से कौन सा है?

A. Use multiple write() statements.
B. Use writelines() method.
C. Use writeLine() method.
D. Use append() method.


Solution
B. Use writelines() method.






Report Bug