Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
firs3 is a data frame that had work done to it, and now I want to return the STNAME column as a list of strings containing the STNAMES only, how can I do that?
print(first3.loc['STNAME'])
first3.STNAME.astype(str).values
first3['STNAME'].tolist()
:
first3.loc[:,'STNAME'].tolist()
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.
first3.STNAME.astype(str).values?first3['STNAME'].tolist()? or with loc you need to add:for all rows:first3.loc[:,'STNAME'].tolist()