Coding Ref

How to convert a series to a list in Pandas

How to convert a series to a list in Pandass

To convert a Pandas series to a list, you can use the tolist() method. This method will return a list containing the data from the series.

Here's an example of using the tolist() method to convert a Pandas series to a list:

main.py
import pandas as pd

# create a sample series
s = pd.Series([3, 2, 1, 4, 5])

# convert the series to a list
s_list = s.tolist()

# display the result
print(s_list)

This will convert the data in the series to a list, and return a list containing the data from the series. The resulting list will be displayed to the console.

The output will be:

output
[3, 2, 1, 4, 5]

Conclusion

The tolist() method is a simple way to convert a Pandas series to a list. It allows you to easily convert the data in a series to a Python list, which can be useful for working with the data in the list.

You'll also like

Related tutorials curated for you

    How to add an empty column to a Pandas DataFrame

    How to drop duplicate rows in Pandas

    How to sort a series in Pandas

    How to drop an index column in Pandas

    How to reshape a Pandas DataFrame

    How to make a crosstab in Pandas

    What is idxmax() in Pandas?

    How to change the order of columns in Pandas

    How to get the absolute value for a column in Pandas

    How to filter a Pandas DataFrame

    How to use astype() in Pandas

    What does Diff() do in Pandas?