2009 109: Difference between revisions

From XPUB & Lens-Based wiki
Line 21: Line 21:
return d
return d
</source>
</source>
[[Python Image Library]]

Revision as of 14:02, 9 December 2008

Looked at some examples:

In-class, doing Exercise 12.3

Write a function called most_frequent that takes a string and prints the letters in decreasing order of frequency. Find text samples from several different languages and see how letter frequency varies between languages. Compare your results with the tables at http://wikipedia.org/wiki/Letter_frequencies.

Recall the Historgram function from Chapter 9, p.105:

def histogram(s):
	d = dict()
	for c in s:
		if c not in d:
			d[c] = 1
		else:
			d[c] += 1
	return d

Python Image Library