blob: 6da352a3835d0e39f616f84654f18959c9cf77a3 [file] [log] [blame]
Fred Drake2e1094e1999-04-09 14:53:35 +00001#! /usr/bin/env python
Guido van Rossumab3a2501994-08-01 12:18:36 +00002
3# This Python program sorts and reformats the table of keywords in ref2.tex
4
5import string
6l = []
7try:
8 while 1:
9 l = l + string.split(raw_input())
10except EOFError:
11 pass
12l.sort()
13for x in l[:]:
14 while l.count(x) > 1: l.remove(x)
15ncols = 5
16nrows = (len(l)+ncols-1)/ncols
17for i in range(nrows):
18 for j in range(i, len(l), nrows):
19 print string.ljust(l[j], 10),
20 print