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

 
复制代码
a=['序号',1,2,3,4,5]
b=['成本',20,45,12,34,67]
import  pandas
c=pandas.Series(a)
d=pandas.Series(b)
e=pandas.DataFrame(list(zip(c,d)))
print(e)

    0   1
0  序号  成本
1   1  20
2   2  45
3   3  12
4   4  34
5   5  67

#设置新列名
e.columns=['序号','成本']
#重置索引
e=e.drop(0,axis=0).reset_index()
e.drop('index',axis=1,inplace=True)
print(e)

  序号  成本
0  1  20
1  2  45
2  3  12
3  4  34
4  5  67
复制代码

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



相关教程