What is Data Structure?

In computer science, data structure is a logic methodology to organize data in the computer memory so it can be used effectively.

Data structure enable data to be added, remove, store or maintain in a structure manner.

Untitled

Types of Data Structure in Python?

**Non-primitive data type.** Pyhton has list, set, and dictionary as non-primitive data type
that can be recognized as default data structure.

What is Linked List?

<aside> 💡 Linked List is a linier data structure, where the element cannot be stored in the memory located that is near each other. These elements in Linked List are attached by pointer.

</aside>