Report Bug
Qus : What does readlines() method return ?
Qusरीडलाइन () मेथड क्या रिटर्न करता है?

A. Dictionary
B. String
C. Tuple
D. List


Solution
D. List



Explanation

In Python, the readlines() method is a method used with file objects. It reads all the lines in a file and returns them as a list of strings. Each element in the list corresponds to a line in the file.




Report Bug