15

I'm a big fan of 'as' keyword in Python. It makes importing packages in the beginning of the code so slick.

Instead of doing:
> import what
> what.does.the.fox.say()

You can neatly do:
> from what import does.the.fox as fox
> fox.say()

Comments
Add Comment