Creating a Template for a Bootstrap Enabled Website

When building a site, you want consistency. It helps in the design, and makes it easier to communicate with your intended audience. You might call it repetition. The easiest way to do that is via a template. Now different development environments allow you different methods. WordPress has themes, some content management systems (CMS) call them…

Functions in Python

Functions allow us to write several lines of code, that may need to be called at different times in our code, and to call all of the code, with using just the function name, and some parameters. Sometimes functions are used to make code more readable, calling a function by a logical name, rather than…