IP - Sep
IP - Sep
IP - Sep
Data Structure 1D data structure. Can be 1D or mul -dimensional (using nested lists).
Can have both numeric indexes and labels. Supports explicit Only numeric indexes are allowed. Supports implicit
Indexing indexing, meaning you can programma cally choose, provide, indexing where indexes are automa cally assigned
Type
and change indexes. star ng from 0.
Index Duplica on Indexes can be duplicate. Indexes cannot be duplicate.
Element Homogeneous elements: All elements must have the Heterogeneous elements: Can store elements of different Type same data type (e.g., all integers
or all strings). data types (e.g., a mix of integers, strings, etc.).
Example Primarily used in Pandas for handling and analyzing data, Used as a basic data structure in Python for storing
Usage where data is labeled. and accessing data.