1999-04-09 11:53:35 -03:00
|
|
|
#! /usr/bin/env python
|
1994-08-01 09:18:36 -03:00
|
|
|
|
|
|
|
# This Python program sorts and reformats the table of keywords in ref2.tex
|
|
|
|
|
2006-03-17 02:49:51 -04:00
|
|
|
def raw_input(prompt):
|
|
|
|
import sys
|
|
|
|
sys.stdout.write(prompt)
|
|
|
|
sys.stdout.flush()
|
|
|
|
return sys.stdin.readline()
|
|
|
|
|
1994-08-01 09:18:36 -03:00
|
|
|
l = []
|
|
|
|
try:
|
2004-07-18 03:25:50 -03:00
|
|
|
while 1:
|
|
|
|
l = l + raw_input().split()
|
1994-08-01 09:18:36 -03:00
|
|
|
except EOFError:
|
2004-07-18 03:25:50 -03:00
|
|
|
pass
|
1994-08-01 09:18:36 -03:00
|
|
|
l.sort()
|
|
|
|
for x in l[:]:
|
2004-07-18 03:25:50 -03:00
|
|
|
while l.count(x) > 1: l.remove(x)
|
1994-08-01 09:18:36 -03:00
|
|
|
ncols = 5
|
|
|
|
nrows = (len(l)+ncols-1)/ncols
|
|
|
|
for i in range(nrows):
|
2004-07-18 03:25:50 -03:00
|
|
|
for j in range(i, len(l), nrows):
|
2007-03-20 23:11:39 -03:00
|
|
|
print(l[j].ljust(10), end=' ')
|
|
|
|
print()
|