稳重芒果

文章
5
资源
0
加入时间
3年12月4天

数据科学库Python——Pandas使用基础Pandas使用基础

Pandas使用基础注:numpy可以帮我们处理数值型数据,但是pandas除了处理数值之外(基于numpy),还能够帮助我们处理其他类型的数据。一、Series的使用基础(1)通过pd.Series来创建数组import pandas as pdt = pd.Serires([12,34,25,75,67,87,54])print(t)print(type(t))# 输出结果为:0 121 342 253 754 675 876 5