Python Pandas Index.tolist()
Python是一种进行数据分析的伟大语言,主要是因为以数据为中心的Python包的奇妙生态系统。Pandas就是这些包中的一个,它使导入和分析数据变得更加容易。
Pandas Index.tolist()函数返回一个值的列表。这些值都是一个标量类型,是Python标量(对于str、int、float)或者pandas标量(对于Timestamp/Timedelta/Interval/Period)。
语法: Index.tolist()
参数:无
返回:列表
例子#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()
输出 :