Report Bug
Qus : Which statement will return one line from a file (file object is f) ?
Qusकौन सा स्टेटमेंट फ़ाइल (file object is 'f) से एक पंक्ति प्रस्तुत करेगा |

A. f.readlines()
B. f.readline()
C. f.read()
D. f.line()


Solution
B. f.readline()






Report Bug