Improvements for import this

Michael Hoffman cam.ac.uk at mh391.invalid
Sat Apr 15 03:39:08 EDT 2006


As the capabilities of core Python have increased, I've noticed that the 
logic in import this can be simplified to one line:

print s.decode("rot13")

;)

At the very least the last line:

print "".join([d.get(c, c) for c in s])

could use a generator expression instead of a list comprehension.
-- 
Michael Hoffman



More information about the Python-list mailing list