pandas insert column first position code example
Example 1: pandas insert column in the beginning
insert_index = 0
insert_colname = 'new column'
insert_values = [1, 2, 3, 4, 5] # this can be a numpy array too
df.insert(loc=insert_index, column=insert_colname, value=insert_values)
Example 2: insert column at specific position in pandas dataframe
idx = 0
new_col = [7, 8, 9] # can be a list, a Series, an array or a scalar
df.insert(loc=idx, column='Col_name', value=new_col)