Data Structure is a collection of data types, the relationship among them and the functions or operations that can be applied on the data. Data type can be string, Integer, Floating value and so on. What is the difference between Mutable/Immutable object? Mutable Objects Objects whose state can be changed once it is created like
Python Data Structure - DesignLinux
Learn Python Tuples Data Structure – Part 2
In this Part 2 of Python Data Structure series, we will be discussing what is a tuple, how it differs from other data structure in python, how to create, delete tuple objects and methods of tuple objects and how tuple differs from the list. Python tuples are similar to list data structure but the main
Learn Python Dictionary Data Structure – Part 3
In this Part 3 of Python Data Structure series, we will be discussing what is a dictionary, how it differs from other data structure in python, how to create, delete dictionary objects and methods of dictionary objects. Dictionary is a built-in implementation of “Python Data Structure” which is a collection of “Key: Value” pairs. Dictionary
Learn Python Set/Frozenset Data Structure – Part 4
In this Part 4 of Python Data Structure series, we will be discussing what is a set, how it differs from other data structure in python, how to create set objects, delete set objects and methods of set objects. A set object is an unordered collection of distinct hashable objects. Set automatically removes duplicate items
Learn Python Sys Module
In this article, we will take a look at the Python Sys Module. There are variables and functions that are maintained by the interpreter and the sys module provides a way of interacting with them. These variables are available until the interpreter is alive. We will have a glance at some of the commonly used