python how to use find in text files code example
Example 1: how to get python to extract information from a text file
print("HEllo")
Example 2: how to read specific words from a file in python
fo = open("output.txt", "r+")
str = fo.readline()
str = str[7:11]
print "Read String is : ", str
fo.close()