Python Pandas - 在最后一个索引的第一个索引处插入一个新的索引值
要在最后一个索引的第一个索引处插入新的索引值,请使用方法。设置最后一个索引值-1和要作为参数插入的值。index.insert()
首先,导入所需的库——
import pandas as pd
创建Pandas索引-
index = pd.Index(['Car','Bike','Airplane','Ship','Truck'])
显示索引-
print("Pandas Index...\n",index)使用该insert()方法在最后一个索引处插入一个新值。中的第一个参数insert()是放置新索引值的位置。这里的-1表示新索引值插入到最后一个索引的第一个索引处。第二个参数是要插入的新索引值。
index.insert(-1, 'Suburban')
示例
以下是代码-
import pandas as pd
#创建Pandas索引
index = pd.Index(['Car','Bike','Airplane','Ship','Truck'])
#显示索引
print("Pandas Index...\n",index)
#返回数据的dtype
print("\nThe dtype object...\n",index.dtype)
#使用insert()方法在最后一个索引的第一个索引处插入一个新值。
#insert()中的第一个参数是放置新索引值的位置。
#这里的-1表示新索引值插入到最后一个索引的第一个索引处。
#第二个参数是要插入的新索引值。
print("\nAfter inserting a new index value...\n", index.insert(-1, 'Suburban'))输出结果这将产生以下输出-
Pandas Index... Index(['Car', 'Bike', 'Airplane', 'Ship', 'Truck'], dtype='object') The dtype object... object After inserting a new index value... Index(['Car', 'Bike', 'Airplane', 'Ship', 'Suburban', 'Truck'], dtype='object')
热门推荐
10 分手的祝福语女生简短
11 开工红包祝福语毕业简短
12 幼儿转园祝福语简短
13 清新唯美生日祝福语简短
14 简短他人的生日祝福语
15 新年祝福语鼠年简短创意
16 妹妹生日祝福语简短好看
17 体育校庆祝福语简短
18 同事孩子上学祝福语简短