VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > temp > python入门教程 >
  • 将多行合并并为一行

 
复制代码
import  pandas
a=pandas.read_excel()
def  abc(x):
    return  ','.join(x.values)

b=a.groupby(['列名'1])['列名2'].apply(abc)
c=b.reset_index()
print(c)
复制代码

 出处:https://www.cnblogs.com/luckiness/p/13200150.html



相关教程