Programming

Working with Strings in Python
The string is one of the most popular data types in python. We can use the string data type to store any text data. In python, any character under sin...
How to work with Files in Python
Python is an amazing programming language for most tasks, such as web development, AI, automation, or general programming. Working with files and fold...
Working with Numbers in Python
In this tutorial, we will learn about the processing that can be done with numbers in python. To work with this tutorial, it is recommended to install...
Everything about Python Lists
Python has many data types like integer, float, string, list, tuple, etc. In this tutorial, we will learn about the list data type. Lists are one of t...
Basics of Parsing Command Line Arguments in Python
Command-line applications are one of the oldest and most used types of apps. If you are an experienced Linux user, you may have hardly used GUI tools ...
Getting Started with Python
Python is the fastest-growing programming language in the world. Major websites like Instagram, Pinterest, Quora, and many others are built using pyth...
Extracting Linux System and Hardware Info Using Python
Finding hardware and system information in Linux is a handy and interesting task. We can extract Operating System details, user details, memory detail...
Everything you should know about Python's PIP and PyPi
PIP is the standard package manager available in python. Although Python's standard library comes with many useful packages by default, we are not lim...
Logging in Python - Your One Stop Guide
Logging is a crucial step to be performed by a programmer during software development. It helps developers to track events happening during the execut...