आपको टेक्स्ट फ़ाइल, file1.txt दी जाती है, जिसके कंटेंट्स इस प्रकार हैं:
hello everyone
today is a monday
all the best for your exams
निम्नलिखित कोड का आउटपुट क्या होगा?
myfile = open("file1.txt", "r")
str = myfile.readline(6)
str = myfile.readline()
str = myfile.readline(8)
print(str)
myfile.close()
1
today is
2
hello
3
hello ev
4
hello everyone