Computer Science, asked by rohitkunarohit, 6 months ago

Write a python program to count number of articles (a,an,the) in a text file. ​

Answers

Answered by harnathyadav2907
1

Write a Python program to count the number of lines in a text file.

  1. Contain of text.txt. ...
  2. Sample Solution:-
  3. Python Code: def file_lengthy(fname): with open(fname) as f: for i, l in enumerate(f): pass return i + 1 print("Number of lines in the file: ",file_lengthy("test.txt")) ...
  4. Flowchart:
  5. Python Code Editor:
Similar questions