Mike

What is Docker

What is Docker? Docker is a platform as a Service (PaaS) that utilizes operating-level virtualization to deliver software in a container construct. A container can be thought of as what is needed to run that specific application that you want to containerize, with all the binaries and libraries needed for that specific application to function.

What is Docker Read More »

Passing External Arguments into Python Functions

From a previous post on Python Functions, we can look into how we can pass external arguments into Python functions.  This will take our code and turn it into reusable chunks of code.  Therefore this is good for a few reasons: Passing Arguments into Python Functions With functions, you can pass outside arguments into them.

Passing External Arguments into Python Functions Read More »

Enumerate and Range

Since we spent the last few posts discussing iterators, it is time to introduce enumerate and range.  Both enumerate and range are what are known as iterators.  An iterator is defined as: An iterator is an object that contains a countable number of values that can be traversed through Source: https://www.w3schools.com/python/python_iterators.asp enumerate() It’s time for

Enumerate and Range Read More »