KnowledgeBoat Logo
|

Informatics Practices

The iteritems() iterate over vertical subset in the form of (col_index,series) pair.

Python Data Handling

1 Like

Answer

True

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.

Answered By

1 Like


Related Questions