Displaying a list of words from a text followed by the number of times they appear: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

    16 March 2011

    • curprev 14:1314:13, 16 March 2011Aymeric Mansoux talk contribs 305 bytes +305 Created page with "<source lang="python"> #!/usr/bin/env python import sys, string words = {} for line in sys.stdin: for word in line.split(): word = word.lower().strip(string.punctua..."