Use and usefulness of the as syntax

Tim Wintle tim.wintle at teamrubber.com
Sat Nov 12 08:03:29 EST 2011


On Sat, 2011-11-12 at 12:56 +0100, candide wrote:

> So what is the pragmatics of the as syntax ?

Another case:

try:
    import json
except:
    import simplejson as json


(same goes for several modules where the C implementation may or may not
be available)

Tim




More information about the Python-list mailing list