Python in Business Applications
Python has become very popular recently in applications for data science and machine learning, in fields where fast prototyping is a priority. Python is a good candidate as it is easy to learn with its forgiving dynamic typing (I know this can also be a disadvantage), a variety of libraries and possible direct execution at the command prompt. For its serverless Lambda service Amazon Web Services (AWS) offers Python as programing language along with Java and Node.js. I have become curious about Python. It's pretty easy to get started. The prerequisites are: Download and install a current Python version like Python 3.8 for your computer Install a package manager like PIP Have a suitable IDE ready like Visual Studio Code (or any other) For database driven applications you have a database ready like the PostgreSQL on the AWS free tier Let's start with a few simple lines of code. Looking at the variabl...