I checked out iterrows
after noticing Nick Crawford's answer, but found that it yields (index, Series) tuples. Not sure which would work best for you, but I ended up using the itertuples
method for my problem, which yields (index, row_value1...) tuples.
There's also iterkv
, which iterates through (column, series) tuples.