Write a python program to check whether the given word is present in a file or not.
Answers
Answered by
0
Explanation:
Write a Python program to count the number of lines in a text file.
- Contain of text.txt. ...
- Sample Solution:-
- 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")) ...
- Flowchart:
- Python Code Editor:
Similar questions