Lists in Python | Part 1

By Harshith P K

Python offers a range of data types referred to as sequences. In this article today, we will be learning about lists in Python. We will be defining what a list is and learn differe.... Read More

Lists in Python | Part 2

By Harshith P K

In this article, we will be learning about accessing elements from a list, removing elements from a list and slicing of lists. This is the second article on lists in Python. To und.... Read More

Built-in methods for Lists in Python

By Harshith P K

In this article, we will be learning the built-in functions of lists in Python. We will be learning different ways to use built-in methods that Python supports for lists. We will o.... Read More

Drawing Grid Lines On Images Using Python

By Harshith P K

This is a full tutorial on drawing grid lines on images using python. We will be using matplotlib and PIL libraries to accomplish this task. First, let us understand what matplotli.... Read More

std::exchange in C++

By Lakshya Narain

In this tutorial, you would understand what is std::exchange and how is it used in C++. The purpose of std::exchange is that it returns the old value of the particular variable and.... Read More

QR Code Scanner in Python

By Prakhar Gupta

This article is to introduce the Python library known as qrtools, which can be used to scan and generate QR code in Python. What is QR Code? A QR code is a readable barcode. The IS.... Read More

Learning Prediction Models with False Positives and False Negatives

By Manisha

In this article, you will study false positives and false negatives in Machine Learning. Learning Prediction Models These two concepts, i.e., false positives and false negatives, f.... Read More

C++ program to find the depth of a N-ary Tree

By Saksham Agarwal

In this blog, today we’ll try to find the maximum depth of an array given an N-ary Tree in C++. WHAT IS AN N-ARY TREE? An N-ary Tree is a tree in which every vertex has no mo.... Read More

Related Posts