mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 21:51:15 +00:00
10 lines
201 B
Python
10 lines
201 B
Python
from mykwic import *
|
|
from pprint import pprint
|
|
|
|
for l in open("tocheck.txt"):
|
|
print "="*50
|
|
input = l[:-1]
|
|
print "INPUT:",input
|
|
v = eval("kwic("+input+")")
|
|
print "OUTPUT:"
|
|
pprint |