A simple program to count the words, lines and sentences contained in a text file. The assumptions are made that words are separated by whitespaces, and sentences end with a period, question mark or exclamation mark.
Wordcount of a text file (Python)
# count lines, sentences, and words of a text file
# set all the counters to zero
lines, blanklines, sentences, words = 0, 0, 0, 0
print '-' * 50
try:
# use a text file you have, or google for this one ...
filename = 'GettysburgAddress.txt'
textf = open(filename, 'r')
except IOError:
print 'Cannot open file %s for reading' % filename
import sys
sys.exit(0)
# reads one line at a time
for line in textf:
print line, # test
lines += 1
if line.startswith('\n'):
blanklines += 1
else:
# assume that each sentence ends with . or ! or ?
# so simply count these characters
sentences += line.count('.') + line.count('!') + line.count('?')
# create a list of words
# use None to split at any whitespace regardless of length
# so for instance double space counts as one space
tempwords = line.split(None)
print tempwords # test
# word total count
words += len(tempwords)
textf.close()
print '-' * 50
print "Lines : ", lines
print "Blank lines: ", blanklines
print "Sentences : ", sentences
print "Words : ", words
# optional console wait for keypress
from msvcrt import getch
getch()
vegaseat 1,735 DaniWeb's Hypocrite Team Colleague
eclark53 0 Newbie Poster
pelupelu 0 Newbie Poster
vegaseat 1,735 DaniWeb's Hypocrite Team Colleague
pelupelu 0 Newbie Poster
vegaseat 1,735 DaniWeb's Hypocrite Team Colleague
pelupelu 0 Newbie Poster
vegaseat 1,735 DaniWeb's Hypocrite Team Colleague
drumkill 0 Newbie Poster
pythopian 10 Junior Poster in Training
vegaseat 1,735 DaniWeb's Hypocrite Team Colleague
halophyte 0 Newbie Poster
snippsat 661 Master Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.