Www.mystudyzone.com

Write a small python code to delete a column namely “head1” from a dataframe df1. Ans: df = df1.pop(‘head1’) ... Write a Python code to create an empty dataframe. Ans: import pandas as pd ... 33. Write the command using Insert() function to add a new column in the last place(3rd place) named “Salary” from the list Sal=[10000,15000 ... ................
................