CBSE Class 12 Informatics Practices Question 88 of 167

Python Pandas — I — Question 13

Back to all questions
13
Question

Question 13

The del statement can remove the rows as well as columns in a dataframe.

Answer

False

Reason — The del statement is used to delete columns in a DataFrame, while the drop() function is used to delete rows from a DataFrame.