Computer Science, asked by saurabharushmishra25, 6 months ago

4) Write the command using Insert () function to add a new column in the last place(3d place) named “Salary" from the list Sal=[10000,15000,20000] in an existing dataframe named EMP already having 2 columns.​

Answers

Answered by FABEAUTY
2

Answer:

EMP.insert(loc=3,column=”Salary”,value=Sal)

hope it is helpfull

Similar questions