Program to Read Text File in Python Programming

Q. Write a program to read text file in Python Programming.

Solution:

# Python program to read text file.
def read():
    f = open("text.txt",'r')
    s = f.read()
    print(s)

read()


Output:

#I would love to try or hear the sample audio your app can produce. 
#I do not want to purchase, because I've purchased so many apps that say they do something and do not deliver.  

#Can you please add audio samples with text you've converted? I'd love to see the end results.
#Thanks!

.
how-to-read-file-in-python
Explanation: Here we have defined a function read(). Inside read() function we have also created a file object “f” and opened our text file in read mode ie. “r” mode. 

In next step, we have initialized all the values to variable “s“. And print the result to get the output.

  1. Programming questions on Text Files

    1. WAP to define a method in python to read lines from a text file starting with an alphabet F.
    2. WAP to define a method to count number of lines starting with an alphabet F.
    3. WAP to define a method which display only those lines starting with an alphabet A or F.
    4. WAP to define a method to display only those lines which are bigger than 50 characters.
    5. WAP to define a method to count total number of characters in our text file.
    6. WAP to define a method to count total numbers of word available in our text file.
    7. WAP to define a method which counts the occurrence of particular word in a text file.
    8. WAP to define a method which only print the words having more than 5 characters.
    9. WAP to define a method which counts the occurrence of “is”, “to” in a text file.

    Programming questions on Binary Files

    1. WAP to define a method which displays the records of student having marks between 50 & 70.
    2. WAP to define a method which displays only those student records who secured grade A.