About 3,510 results
Open links in new tab
  1. Iterable

    Iterable is the AI customer engagement platform built for enterprise scale, loved by teams, and trusted by global brands. It transforms data into action, powering intelligent, personalized experiences …

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

    In Python, iterable and iterator have specific meanings. An iterable is an object that has an __iter__ method which returns an iterator, or which defines a __getitem__ method that can take sequential …

  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 · An iterator can be created from an iterable by using the function iter (). To make this possible, the class of an object needs either a method __iter__, which returns an iterator, or a …

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

  6. Iterators and Iterables in Python: Run Efficient Iterations

    When it comes to iteration in Python, you’ll often hear people talking about iterable objects or just iterables. As the name suggests, an iterable is an object that you can iterate over.

  7. Iterables in Python

    We discussed the different types of iterables and understood when to use which iterable. We learned how to unpack iterables in a single line and enumerate those iterables in a loop.

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

  9. An Essential Guide to Python Iterables By Practical Examples

    Summary: in this tutorial, you’ll learn about the Python iterables and iterators. In Python, an iterable is an object that includes zero, one, or many elements. An iterable has the ability to return its elements …

  10. Iterator - Wikipedia

    Iterators are a useful abstraction of input streams – they provide a potentially infinite iterable (but not necessarily indexable) object. Several languages, such as Perl and Python, implement streams as …