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 the most used data types of python and can be used for many …
Roshan Agarwal
Roshan Agarwal
Roshan Agarwal is a python programmer and Linux lover; he is using and experimenting with python for a long time. He loves to write and review open-source software, command-line tools, and web applications. Apart from writing tutorials, he explores and contributes to open-source programs in GitHub.
-
-
Python is an amazing programming language for most tasks such as web development, AI, automation, or any general programming. Working with files and folders is important because we have to use them to automate tasks or store data and various …
-
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 the latest version of python. You can refer to our tutorial for installing the …
-
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 instead of command-line tools to do the same task. For example, Anaconda, the …
-
Python is the fastest-growing programming language in the world. Major websites like Instagram, Pinterest, Quora, and many others are built using python’s Web Framework Django. The thing that makes python most popular is its simple syntax, which is similar to …
-
The string is one of the most popular data types in python. We can use the string data type to store any kind of text data. In python, any character under single or double quotes is considered as strings. These …
-
Finding hardware and system information in Linux is a handy and interesting task. We can extract Operating System details, user details, memory details, CPU details, and much more using simple python codes on Linux. Although we can perform many of …
-
PIP is the standard package manager available in python. Although Python’s standard library comes with many useful packages by default, we are not limited to only those packages. In python, we have a vast repository of packages at PyPI, which …
-
Logging is a crucial step to be performed by a programmer during software development. It helps developers to track events happening during the execution of a program, which can be helpful for the future debugging process. If you are a …
-
Anaconda is an open-source platform for data scientists working with python or R programming languages. It works as both a package manager and an environment manager, and you can create virtual environments and install packages very easily using it.