I have dataframe with column name "Column Name"
column Name
ab
cd
ef
gh
ij
kl
I have an 18K rows in single column. And I want to convert like this using python..
Expected Output: abcdefghijkl
I have dataframe with column name "Column Name"
column Name
ab
cd
ef
gh
ij
kl
I have an 18K rows in single column. And I want to convert like this using python..
Expected Output: abcdefghijkl
If you use Pandas:
import pandas as pd
print(df['column Name'].sum())
Output:
abcdefghijkl