Hello Techies!!! We have learned three ways to store data till now - lists, tuples and dictionaries. Today, we will learn about a different type of collection called sets. What are sets? What is its use? A set is a collection which is unordered and unindexed. In Python sets are written with curly brackets. It … Continue reading Sets – Python
Category: collections
Dictionaries – Python
Hello Techies!! We have learned about lists and tuples till now which were ordered collections and allowed duplicate values. Now, lets learn more about different type of collections in python. Today, we will look into dictionaries. As we all know our traditional dictionaries. right? They are collection of data where we can look for words … Continue reading Dictionaries – Python
Tuples – Python
Hello Techies!!! Hope you guys are doing great. Waking up everyday to learn and apply something new is so exciting. In last tutorial, we learned about a way to store data using a collection called as List. Today, we will look into something called a tuple. Tuple is similar to list storage. It is a … Continue reading Tuples – Python
Lists – Python
Hello Techies!!! Python or any other language gives us a way to store data in a structured way, so that, we can maintain integrity and sanctity of the code. Python Lists is one of the way to do the same. What are lists? What is its use? List is one of the many ways to … Continue reading Lists – Python