Daemons in Ubuntu
When we start a program, it creates an instance of it. The running instance is itself a process. And, processes…
When we start a program, it creates an instance of it. The running instance is itself a process. And, processes…
In this article, we would cover how to monitor NVIDIA GPUs in Ubuntu through three command-line utilities – gpustat, nvtop…
In this article, we would cover how to convert a text file to EPUB in Ubuntu. EPUB is basically an…
In this article, we would discuss the difference between equal to (==) and assignment operator (=) in Python. In programming…
In previous article, we covered Comparison operators in Python. That works only when we compare similar data types i.e. a…
A Python code often involves comparing values stored in variables. This is made possible through comparison operators. For instance, with…
In this article, we would cover Arithmetic operators in Python. These help us perform certain mathematical operations – Addition, Division,…
We consider this article to be an extension of if..else statement in Python. if statements inside a if statement are…
One of the widely-used flow control statement type in Python is if..else statement. Through flow control statements, we can figure…
In this article, we would cover Augmented assignment statements in Python. What makes Augmented assignment statements different from assignment statements…