Python is a common and in-demand programming language these days because it can create applications ranging from easy to complex. This article is for those new to Python programming and want to learn it from the ground up in a short amount of time.
Latest in Programming
-
-
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 operations.
-
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 other similar tasks.
-
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 latest version of python on Linux. If you use other operating systems, switch to python official website and download a binary from there.
-
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 package manager for python, has command-line tools named conda and GUI tool named anaconda navigator.
-
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 normal English language. Its powerfulness makes it a primary choice adopted by top tech companies.
-
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 characters can be any of the Unicode characters that support in python. In this tutorial, we will learn almost everything about the string data type in python.
-
Programming
Extracting Linux System and Hardware Info Using Python
by Roshan Agarwal 22 minutes readFinding 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 those things using terminal and bash scripting, python is way more interesting.
-
Programming
Everything you should know about Python’s PIP and PyPi
by Roshan Agarwal 13 minutes readPIP 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 are developed by many great contributors. With the pip package manager’s help, we can easily install and use any of these packages in our python code.
-
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 new learner or working on a new project, it is a good practice to use logging for tracking the code flow and for solving errors.