Letter Count HistogramΒΆ

The previous lab wrote a function to return a dictionary of letter counts. In an earlier chapter, we wrote a turtle program that could draw a histogram.

Combine these two ideas together to create a function that will take a string and create a histogram of the number of times each letter occurs. Make sure it is in alphabetical order from left to right.

  1. Count the number of times each letter occurs. Keep the count in a dictionary.

  2. Get the keys from the dictionary, convert them to a list, and sort them.

  3. Iterate through the keys, in alphabetical order, getting the associated value (count).

  4. Make a histogram bar for each.

You have attempted of activities on this page