DataFrame.itertuples()
pandas.DataFrame.itertuples
-
DataFrame.itertuples(index=True, name='Pandas')
-
Iterate over DataFrame rows as namedtuples, with index value as first element of the tuple.
Parameters: index : boolean, default True
If True, return the index as the first element of the tuple.
name : string, default “Pandas”
The name of the returned namedtuples or None to return regular tuples.
See also