How to Handle Missing Keys in Python Dictionary

By Anamika Roy

We are going to learn about how to handle missing keys in the Python dictionary. Dictionaries are widely used all over. It acts as a container. It gives access to every key to its .... Read More

Error Types in Python

By Abhirup Majumder

In this tutorial, we are going to discuss the types of errors, explanations, and examples in Python. Errors and it’s explanation Errors in Python can be mainly divided into t.... Read More

How to pass an array to a function in Python

By Sanam Sahoo

Hello, Coders!! In this Python tutorial, we will learn how we can pass an array to a function in Python. In Python, any type of data can be passed as an argument like string, list,.... Read More

How to capture a particular portion of a screen in Python

By Anamika Roy

Here we will learn about how to capture a particular portion of a screen in Python. We need to take a screenshot of a particular portion, for most of the applications in many cases.... Read More

How to comment out a portion of code in Python

By Anamika Roy

We are going to discuss how to comment out a portion of code in Python, in this tutorial. We add comments to explain the code or to avoid getting the code complex. It is always goo.... Read More

Slice Notation on List in Python

By Sanam Sahoo

Hello, Coders!! In this Python tutorial, we will learn about the slice notation on a list in a Python program. Before diving into the main topic, let’s discuss some basic con.... Read More

EMI Calculator in Java

By Sai Venkat Kodithyala

In this tutorial, we will learn how to calculate the EMI in Java. EMI is nothing but, a payable amount that needs to be given to the bank every month until the full amount is paid..... Read More

How to sort vector in descending order in C++

By Sanam Sahoo

Hello, Coders!! In this section, we will learn how to sort a vector in descending order in C++. Let’s discuss the methods, we can sort the vector: Using sort() function Using.... Read More

Related Posts