Posts

Showing posts from August, 2024

Data Structure and Algorithm in Python

Image
 Data Structure and Algorithm in Python Introduction Python include list , set, tuples and dictionary . Each of the data structures is unique  in its  own way. Data structures are “containers” that organize and group data  according to type.  The  data structures differ based on mutability and order.    Application DSA is about  finding efficient ways to store and retrieve data, to perform operations on data, and to solve specific problems . By understanding DSA, you can: Decide which data structure or algorithm is best for a given situation. Make programs that run faster or use less memory. It enables you to store and access data Built-in data structure                                      list                                            ...