chevron_left
Series
check_circle
Mark as learned thumb_up
0
thumb_down
0
chat_bubble_outline
0
auto_stories new
settings
Pandas Series | to_list method
Pandas
chevron_rightDocumentation
chevron_rightSeries
schedule Jul 1, 2022
Last updated local_offer Python●Pandas
Tags tocTable of Contents
expand_more Check out the interactive map of data science
Pandas Series.to_list(~)
method converts the Series into a Python's standard list.
Parameters
This method does not take any parameters.
Return Value
A Python standard list.
Examples
To convert a Series into a Python standard list:
s.to_list()
[5,6]
Note that a new copy of the list is created, and so modifying the returned list will not mutate the original Series and vice versa.
Published by Isshin Inada
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Ask a question or leave a feedback...
Official Pandas Documentation
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Series.to_list.html
thumb_up
0
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!