Python Program to Print Words Having more Than 5 Characters

Q. Write a program to print words having more than five characters in a text file in python.

file: text.txt
program-to-count-total-number-of-words-in-text-file

Solution:

# print words having len 10 or more
def read_data():
    f = open("text.txt", 'r')
    s = f.read()
    x = s.split()
    for i in x:
        if len(i) > 5:
            print(i)

read_data()

Output:

# sample
# produce.
# purchase,
# because
# purchased
# something
# deliver.
# please
# samples
# you've
# converted?
# results.
# Thanks!

count-total-number-of-characters-in-a-text-file

Explanation: Here we have defined a function read_data(). Inside read_data() 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 used read() function to read our file word by word. The read() function return the output in string format.

Note: Here inside function, we have used split()  function which returns the list of words available in our text file. Here “s” is our file object.

split() method will separate each word from space and store them in list “x“.
After that we used for loop to iterate over each word present inside our list “x” and checked for the length of each word using len() function. If word with more than 5 characters length found then it will be printed and rest will be skipped. Hence we got the final result.

  1. Programming questions on Text Files

    1. WAP to define a method to read text document line by line.
    2. WAP to define a method in python to read lines from a text file starting with an alphabet F.
    3. WAP to define a method to count number of lines starting with an alphabet F.
    4. WAP to define a method which display only those lines starting with an alphabet A or F.
    5. WAP to define a method to display only those lines which are bigger than 50 characters.
    6. WAP to define a method to count total number of characters in our text file.
    7. WAP to define a method to count total numbers of word available in our text file.
    8. WAP to define a method which counts the occurrence of particular word in a text file.
    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.