2021年2月6日星期六

Pandas: How to convert rows into one string?

I have the following Pandas DataFrame that I want to convert into a concatenated string after iterating through but with each on new line.

Input:

    str_col  0      This  1        is  2       one  3  sentence  

Output:

This  is  one  sentence  

Code:

import pandas as pd    data = {"str_col" : ["This", "is", "one", "sentence"]}  df = pd.DataFrame(data)  
https://stackoverflow.com/questions/66084173/pandas-how-to-convert-rows-into-one-string February 07, 2021 at 11:04AM

没有评论:

发表评论