About 44,300 results
Open links in new tab
  1. Iterable

    Iterable is an AI customer engagement platform built for how customers behave today, helping brands respond in real time with unified data and optimization.

  2. What are iterator, iterable, and iteration? - Stack Overflow

    So an iterable is an object that you can get an iterator from. An iterator is an object with a next (Python 2) or __next__ (Python 3) method. Whenever you use a for loop, or map, or a list comprehension, …

  3. Iterable - LinkedIn

    Iterable is the AI customer engagement platform built for enterprise scale, loved by teams, and trusted by global brands like Priceline, Fabletics, Blockchain, and Box. It transforms data into ...

  4. Difference between iterable and iterator - GeeksforGeeks

    Jul 11, 2025 · Iterable is an object, that one can iterate over. It generates an Iterator when passed to iter () method. An iterator is an object, which is used to iterate over an iterable object using the __next__ …

  5. Iterables in Python - Python Geeks

    Learn what are Python iterables. See types of iterables & their uses. Learn how to unpack iterables in single line & enumerate them in loop.

  6. Iterable (Java Platform SE 8 ) - Oracle

    Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception. Unless otherwise specified by the implementing class, actions are …

  7. Iterators and Iterables in Python: Run Efficient Iterations

    In this tutorial, you'll learn what iterators and iterables are in Python. You'll learn how they differ and when to use them in your code. You'll also learn how to create your own iterators and iterables to …

  8. Iterable in Python - pythonbasics.org

    Iterable in Python An iteratable is a Python object that can be used as a sequence. You can go to the next item of the sequence using the next () method. You can loop over an iterable, but you cannot …

  9. What is an iterable? - Python Morsels

    Oct 6, 2020 · An iterable is anything you're able to iterate over (iter-able). Iterables can be looped over and anything you can loop over is an iterable. Not every iterable is indexable or has a length.

  10. Iterator - Wikipedia

    For any iterable type, there are several methods that control different aspects of the iteration process. For example, the iterator method is supposed to return an Iterator object, and the pull-one method is …