CBSE Class 12 Informatics Practices Question 46 of 101

Python Pandas — II — Question 1

Back to all questions
1
Question

Question 1

The iteritems() iterates over the rows of a DataFrame.

Answer

False

Reason — The iteritems() method in pandas iterates over a DataFrame column-wise, where each vertical subset is in the form of (column-index, Series) where Series contains all row values for that column-index.