replace empty cells pandas code example
Example 1: drop multiple columns pandas
yourdf.drop(['columnheading1', 'columnheading2'], axis=1, inplace=True)
Example 2: remove all odd row pandas
#to skip every other row
df.iloc[::2]
yourdf.drop(['columnheading1', 'columnheading2'], axis=1, inplace=True)
#to skip every other row
df.iloc[::2]