what is the difference between python list and pandas series

参考链接

Series and Lists:

Series is a 1D data structure designed for a particular use case which is

quite different from a list. Yet they both are 1D, ordered data structures. Follow to know more :

The pandas documentation defines a Series as -

Series is a one-dimensional labeled array capable of holding any data type (integers, strings, floating point numbers, Python objects, etc.). The axis labels are collectively referred to as the index.

你可能感兴趣的:(what is the difference between python list and pandas series)