pandas
Series.__iter__()
Return an iterator of the values.
These are each a scalar type, which is a Python scalar (for str, int, float) or a pandas scalar (for Timestamp/Timedelta/Interval/Period)
Examples
>>> s = pd.Series([1, 2, 3]) >>> for x in s: ... print(x) 1 2 3
previous
pandas.Series.iloc
next
pandas.Series.items