Lesson # 4 Hi All , In lesson 3 we start to learn the collection in python. We finish list. Today we learn more collection types. Tuples A tuple is collection which is ordered and unchangeable. It similar to List but only difference is once you create the tuple you are not able to change the orders, didn’t add more items, unchangeable. But yes, there is ways to add items or modify the values in tuple. If you need to add value in tuple, you need to create another tuple and join both. If you need to modify the tuple value, cast tuple into list, modify the value and again cast list to tuple. Example of tuple MyTuple = (“Banan”, “Apple”) In tuple ( ) brackets are used to declare and initialize the tuple. You can use count() and index() methods to search the values in tuple. Sets Sets is collection with unordered and unindexed data. It means there is no index associated with value. { } brackets are used to declare and initialize the sets...