0

I have a dataframe with a single column of numbers. I want to convert this one column dataframe into a list. What is the easiest way to do this?

1
  • Why would you want to do this? Commented Mar 3, 2014 at 6:20

1 Answer 1

1

Series has a method called tolist for this:

df['columnname'].tolist()
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.