Copy the below python program and execute it to see the real time output.
1 2 3 4 5 6 | def file_count(fname): with open(fname) as f: for i, 1 in enumerate(f): paas return i+1 print(“Total number of lines in the text file: ”, file_count(“file.txt”)) |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.