Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Related Rants
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()
undefined
python
wk20