pandas.Series.items — pandas 0.25.3 documentation (original) (raw)
Lazily iterate over (index, value) tuples.
This method returns an iterable tuple (index, value). This is convenient if you want to create a lazy iterator.
Returns: | iterable Iterable of tuples containing the (index, value) pairs from a Series. |
---|
Examples
s = pd.Series(['A', 'B', 'C']) for index, value in s.items(): ... print("Index : {}, Value : {}".format(index, value)) Index : 0, Value : A Index : 1, Value : B Index : 2, Value : C