Python
Python installation, virtual environments, package tools, and scripting workflows on Linux.
How to Reverse a String in Python
This article goes through several different ways to reverse a string in Python.

Python For Loop
The for loop in Python iterates over the items of a sequence and repeatedly executes a block of statements.

How to Install Python 3.9 on Debian 10
In this article, we'll show you how to install Python 3.9 on Debian 10.

Python Tuples
This article will walk you through the basics of Python tuples. Tuples are similar to lists, with the main difference being that the lists are mutable while the tuples are immutable.

How to Split a String in Python
When working with strings, one of the everyday operations is to split a string into an array of substrings using a given delimiter.

How to Convert Integer into String in Python
In Python, we can convert integers and other data types to strings using the built-in str() function.

How to Install Flask on Ubuntu 20.04
In this article we'll discuss how to install Flask on Ubuntu 20.04 inside a Python virtual environment.

How to Install Python 3.9 on Ubuntu 20.04
In this article, we'll show you two ways to install Python 3.9 on Ubuntu 20.04.

Python while Loop
This tutorial covers the basics of while loops in Python. We'll also show you how to use the else clause and the break and continue statements.

Install Odoo 14 on CentOS 8
This article explains how to install and deploy Odoo 14 inside a Python virtual environment on CentOS 8.

How to Install Odoo 14 on Ubuntu 20.04
This article explains how to install and deploy Odoo 14 inside a Python virtual environment on Ubuntu 20.04. Odoo is a popular open-source suite of business apps that help companies to manage and run their business.

How to Find the Length of a List in Python
Python has a built-in function len() that returns the length of a given object.

Python List reverse
In Python, there are several different ways to reverse a list, depending on what you're trying to do.

Python map() Function
The Python's map() function takes an iterable object, along with a function, and applies that function to each element in the iterable.

How to Install OpenCV on Ubuntu 20.04
This article describes how to install OpenCV on Ubuntu 20.04. OpenCV is an open-source computer vision library with bindings for C++, Python, and Java.

How to Install TensorFlow on Ubuntu 20.04
TensorFlow is a free and open-source platform for machine learning built by Google. This tutorial explains how to install TensorFlow in a Python virtual environment on Ubuntu 20.04.

How to Comment in Python
This article covers the basics of writing comments in Python. A comment is a human-readable explanation or annotation that are used to explain the code.

Parsing JSON Data in Python
In this article we'll show you how to parse JSON data in Python. JSON is a human-readable text-based data format

How to Install Anaconda on Ubuntu 20.04
This tutorial will walk you through the installation of Anaconda Python Distribution on Ubuntu 20.04. Anaconda is a popular Python/R data science and machine learning platform.

Python Modulo Operator
The modulo operation is an arithmetic operation that finds the remainder of the division of one number by another. In Python, the modulo operator is represented by the percent sign
