最佳答案
我有一个简化的数据框架:
ID Fruit
F1 Apple
F2 Orange
F3 Banana
我想在数据帧的开头添加一个新的列 df['New_ID']
,其中的数字 880
每行增加一个。
输出应该简单如下:
New_ID ID Fruit
880 F1 Apple
881 F2 Orange
882 F3 Banana
我尝试了以下方法:
df['New_ID'] = ["880"] # but I want to do this without assigning it the list of numbers literally
知道怎么解决吗?
谢谢!