Q. Consider the file poem.txt and predict the output of following code fragment. What exactly is following code fragment doing?

f = open ("poemBTH.txt", "r")

nl = 0

for line in f:

    nl += 1

print (nl)

Answer :- This program reads the number of lines present in the file "poem.txt".

For Example if poem .txt file content this :-

This is
Path Walla
Website 
Thank you : )

Our Output :-

4
>>>


7 Comments

You can help us by Clicking on ads. ^_^
Please do not send spam comment : )

  1. That program reads number of lines present in file "poemBTH.txt".

    ReplyDelete
  2. Where is output

    ReplyDelete
  3. What is the output

    ReplyDelete
  4. pathwalla how it will count
    they is no reading method like read() or readlines()

    ReplyDelete

Post a Comment

You can help us by Clicking on ads. ^_^
Please do not send spam comment : )

Previous Post Next Post