Improvements for import this

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Michael Hoffman

    #1

    Improvements for import this

    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
Working...