Difference between Tuple and List in Python | Tuples vs Lists
You should have heard of tuples and lists in Python. If yes, then you also know that these two data structures are similar to each other. Confused about what is...
You should have heard of tuples and lists in Python. If yes, then you also know that these two data structures are similar to each other. Confused about what is...
You would have come across ‘True’ or ‘False’ questions in your examinations. Do you know that these form a data type in Python? We will learn booleans, booleans of the...
You would have heard of sets and set theory in Mathematics. Sets in Python are similar to those in math. In this article, we will learn sets in Python, accessing...
You would have heard of lists as a collection of values of different data types, including lists. Wondering if these list comprehensions are again another data type? Then the answer...
There are many situations where we need to store a couple of values under a single name and use or modify them in the future. In Python, this is done...
We use containers or boxes to store things used in day-to-day life. Similarly, even in Programming languages, we need some holders of information. These are called Variables. In the article,...
We will learn about one of the data structures, called tuples, in this article. Wondering why we need tuples when we already have lists? We will learn about creating tuples,...
We would have heard of dictionaries in English or other languages. In these we can find meaning for each word. Dictionaries in Python also have a similar concept, where unique...
To record our screen for presentation, we cannot rely on cameras. This is attributed to the quality and shakiness observed whilst recording. So what is the best alternative? A Screen...
We deal with a lot of data everyday. It includes the bill of the things bought from grocery shops, the whatsapp text with your contacts, etc. In a program, all...