📜  Python|熊猫索引.tolist()

📅  最后修改于: 2022-05-13 01:54:36.347000             🧑  作者: Mango

Python|熊猫索引.tolist()

Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。

Pandas Index.tolist()函数返回值列表。它们都是标量类型,它是Python标量(用于 str、int、float)或 pandas 标量(用于 Timestamp/Timedelta/Interval/Period)。

示例 #1:使用Index.tolist()函数将索引转换为列表。

# importing pandas as pd
import pandas as pd
  
# Creating the index
idx = pd.Index(['Harry', 'Mike', 'Arther', 'Nick'],
                                  name ='Student')
  
# Print the Index
print(idx)

输出 :

让我们将索引转换为列表。

# convert the index into a list
idx.tolist()

输出 :


示例 #2:使用Index.tolist()函数将索引转换为Python列表。

# importing pandas as pd
import pandas as pd
  
# Creating the index
idx = pd.Index(['2000-01-02', '2000-02-05', '2000-05-11',
                            '2001-02-11', '2005-11-12'])
  
# Print the Index
print(idx)

输出 :

让我们将索引转换为列表。

# convert the index into a list
idx.tolist()

输出 :