Skip to main content

Section 11.6 The Most Common Words

Coming back to our running example of the text from Romeo and Juliet Act 2, Scene 2, we can write a program using last section's technique to print the ten most common words in the text as follows:
import string

# Count the words in the file
with open("romeo-full.txt", "r") as fhand:
    lines = fhand.readlines()
counts = {}
table = str.maketrans("", "", string.punctuation)
for line in lines:
    line = line.translate(table)
    for word in line.split():
        if word not in counts.keys():
            counts[word] = 1
        else:
            counts[word] += 1

# Sort the dictionary by value
sorted_counts = sorted(counts.items(), key = lambda t: t[1], reverse = True)

# print the top ten
for t in sorted_counts[:10]:
    print(t)
The first part of the program reads the file and creates/fills in the dictionary that maps each word to the amount of times it appears in the document. For this program, instead of simply printing out counts and ending the program, we construct a list of (val, key) tuples and then sort the list in reverse order.
Since the value is first, it will be used for the comparisons. If there is more than one tuple with the same value, it will look at the second element (the key), so tuples whose values are equal will be further sorted in reverse alphabetical order of the key.
At the end, we write a nice for loop which does a multiple assignment iteration and prints out the ten most common words by iterating through a slice of the list (lst[:10]).
Now, the output finally looks like what we want for our word frequency analysis.
61 i
42 and
40 romeo
34 to
34 the
32 thou
32 juliet
30 that
29 my
24 thee
The fact that this complex data parsing and analysis can be done with an easy-to-understand Python program is one reason why Python is a good choice as a language for exploring information.

Checkpoint 11.6.1.

    11-9-2: Which of the following correctly uses the slice operator to grab the first 5 items of a list ‘lst'? Select all that apply.
  • lst[1:5]
  • Incorrect! Remember, list indices start at 0, not 1. Try again.
  • lst[:5]
  • Correct! This line of code slices list lst from its first value to its fifth value.
  • lst[0:4]
  • Incorrect! The slice operator stops at the index before the value after the colon. Try again.
  • lst[:4]
  • Incorrect! The slice operator stops at the index before the value after the colon. Try again.

Checkpoint 11.6.2.

    11-9-3: How will the following code be sorted once this code is run?
    weather = {'Reykjavik': 60, 'Buenos Aires': 55, 'Cairo': 96, 'Berlin': 89, 'Caloocan': 78}
    sorted_weather = weather.sort()
    
  • First city name (alphabetically), then temperature (lowest to highest)
  • Incorrect! Remember, some methods can only be used on specific data types. Try again.
  • First temperature (highest to lowest), then city name(alphabetically)
  • Incorrect! Remember, some methods can only be used on specific data types. Try again.
  • First city name (alphabetically), then temperature (highest to lowest)
  • Incorrect! Remember, some methods can only be used on specific data types. Try again.
  • First temperature (lowest to highest), then city name (alphabetically)
  • Incorrect! Remember, some methods can only be used on specific data types. Try again.
  • An error will occur
  • Correct! The sort() method cannot be used on dictionaries. Instead, add the data from the dictionary to a list first.

Checkpoint 11.6.3.

Construct a block of code that uses tuples to keep track of the word count in the file ‘heineken.txt'. Then, print out the 10 most frequently appearing words preceded by how many times they appear.