I have dataframe
0 1 2
12 34 23
10 12 0
Desire output
upd_string
12, 34, 23
10, 12, 0
I try
df_upd = pd.DataFrame()
df_upd['upd_string'] = df[df.columns.values.tolist()].apply(str)
But it returns
ValueError: no results