DEV Community

Punitha
Punitha

Posted on

Pandas, Creating, and Accessing Series

  • A Series is a one-dimensional data structure in Pandas.

Step 1: Pandas Series

Output:

Here:

  • 0, 1, 2, 3 → index

  • 80, 90, 75, 85 → values

Step 2: Creating Series with Custom Index

Output:

Step 3: Accessing Series Values

  • We can access individual values using their index.

Output:

Top comments (0)