我正在使用Python在表或DataFrame中的单行句子中使用多行句子。 (我还尝试根据“ NaN”表添加句子,但对我不起作用。
import tabula as read_pdf
import numpy as np
df11 = read_pdf("file1.pdf",multiple_tables=True, pages = 'all', nospreadsheet = True)
#print(df11)
for i in range(len(df11)):
a2=df11[i]
if(len(a2.columns)>2):
a2.iloc[:,2] = a2.iloc[:,2].ffill()
a21_2 = a2.fillna('').groupby(a2.iloc[:,2], as_index=False).sum()
print(a21_2)
这是我的测试数据在表格单元格中有多行,如何使其变成单行: