Pandas series is a One-dimensional ndarray with axis labels. The labels need not be unique but must be a hashable type. The object supports both integer- and label-based indexing and provides a host of methods for performing operations involving the index.
Pandas
Series.iteritems() function iterates over the given series object. the function iterates over the tuples containing the index labels and corresponding value in the series.
Syntax: Series.iteritems()
Parameter : None
Returns : tuples
Example #1: Use
Series.iteritems() function to iterate over all the elements in the given series object.
Output :
👁 Image
Now we will use
Series.iteritems() function to iterate over all the elements in the given series object.
Output :
👁 Image
As we can see in the output, the
Series.iteritems() function has successfully iterated over all the elements in the given series object.
Example #2 : Use
Series.iteritems() function to iterate over all the elements in the given series object.
Output :
👁 Image
Now we will use
Series.iteritems() function to iterate over all the elements in the given series object.
Output :
👁 Image
As we can see in the output, the
Series.iteritems() function has successfully iterated over all the elements in the given series object.