我已经提取了文本数据,我需要通过划分和合并将其转变为信息。我是python的新手,可以拆分并使其成为新行。但是,无法合并该列。
例如:
index Col
0 Address:
1 XYZ
2 tr
输出应为:
Index col
0 Address: XYZ tr
我尝试了以下代码:
g=df.iloc[0:1,:]+''+ df.iloc[1:2,:]+''+df.iloc[2:3,:]
但是它不起作用,如果有人建议我将其合并的话,那会很棒。在此先感谢:)。