0% found this document useful (0 votes)
5 views

Text File Problems

Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views

Text File Problems

Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

TEXT FILE PROBLEMS…complete it by Tuesday.

1. Write a program to read the file data.txt and count number of spaces in it.
2. Write a program to read the file hash.txt and display the number characters up to first #.
3. Write a program to read the file alphabet.txt and display all the lines in uppercase.
4. Write a program to read the file data.txt and count number of lines present in it.
5. Write a program to read the file data.txt and display only the digits present in it
6. Write a program to read the file story.txt and display second last line of the file.
7. Write a program to read the file article.txt and count occurrences of words “the” in the file.
8. Write a program to read the file letter.txt and display those words which has less than or equal to four
characters.
9. Write a command(s) to write the following lines to the text file named hello.txt.Assume that the
file is opened in append mode.
“ Welcome my class”
“It is a fun place”
“You will learn and play”
10. Write a method/function COUNTLINES_ET() in python to read lines from a text file
REPORT.TXT, and COUNT those lines which are starting either with ‘E’ and starting with ‘T’
respectively. Display the Total count separately

You might also like