We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
DataFrame.itertuples()
DataFrame.iterrows()
Right now, DataFrame.itertuples() and DataFrame.iterrows() both don't have return types.
itertuples() can return Iterable[tuple[Any, ...]] in the stubs
itertuples()
Iterable[tuple[Any, ...]]
iterrows() can return Iterable[tuple[Hashable, Series]]: in the stubs
iterrows()
Iterable[tuple[Hashable, Series]]: