VOOZH about

URL: https://www.geeksforgeeks.org/python/how-to-convert-a-pandas-series-to-python-list/

⇱ How to convert a Pandas Series to Python list? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to convert a Pandas Series to Python list?

Last Updated : 15 Jul, 2025

In this article, we will discuss how to convert a Pandas series to a Python List and it's type. This can be done using the tolist() method.
Example 1:

Output:

👁 Pandas series to list

In the above example,  we are passing Panda series data as evenNumbers . As index is not given, by default 0 is taken
Example 2:

Output:

👁 Pandas series to list

In the above example, we are passing Panda series data as np.array(['ant','bat','cat','dog']). Index as [100,101,102,103]

Example 3:

Output:

👁 Pandas series to list


Example 4:

Comment