What is cloud computing in a nutshell

Cloud computing is the opposite of on-premise computing. In an on-premise setup, the organization owns the hardware (servers, networking, etc.), hire their own IT experts to manage their data center,…

Python Basics

This is a quick introduction to the basics of python programming language. It covers python3. Variables See the following program. Save as datatype.py: To run Output Casting between string, int,…

Object-Oriented Python

Python is a fully object-oriented programming language but it can also be used for scripting. It is assumed that you are already familiar with object-orientation concepts and have experience writing…

Python Error Handling

In Python, you can handle errors with exceptions. The following code will generate an FileNotFound error because the file it is trying to open does not exist: output An error…

Python Regular Expressions

Python uses re library for regular expressions. re comes with standard python installation. Regular expressions is a very big topic. This page only covers the basics of how to search…