About 103,000 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. 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 ...

  3. 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, …

  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. 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 …

  7. Iterable (Java Platform SE 8 ) - Oracle

    The documentation for JDK 25 includes developer guides, API documentation, and release notes.

  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. An Essential Guide to Python Iterables By Practical Examples

    This tuorial helps you understsand Python iterables and how they work. It also explains the iterators concept in a clear way.

  10. 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 …