【Getting Started with pandas】笔记一

In [1]: from pandas import Series, DataFrame

In [2]: import pandas as pd

In [3]: obj = Series([4,7,-5,3])

In [4]: obj
Out[4]: 
0    4
1    7
2   -5
3    3
dtype: int64
    原文作者:Profeel
    原文地址: https://segmentfault.com/a/1190000002297494
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞