Bigger than Alexandria

--Originally published at Codebuster

Personally, I love libraries. There is nothing I appreciate more than a good book, and in libraries you can get this books for free, for a certain amount of time. Well, libraries in python (or really, programming) are much better than that.

A library is a collection of pre-writton function. You can import them into your code, so instead of writting a completely new function, you can use the ones that have already been defined. Therefore making your codes shorter, simpler and prettier.

In order to import one, all you need to do is literally call the library’s name, so if I wanted to import the math library (the most basic of all) all i’d do is:

import math

Here you can find the libraries in python.