About 28,400 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. Iterable Platform Overview: AI Customer Engagement Platform

    Iterable provides a unified system that converts real-time signals into immediate strategic action, delivering relevant experiences across the lifecycle, without technical friction.

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

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

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

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

  7. What exactly does "iterable" mean in Python? Why isn't my object …

    When an iterable object is passed as an argument to the built-in function iter (), it returns an iterator for the object. This iterator is good for one pass over the set of values. When using iterables, it is usually …

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

  9. Iterators and Iterables in Python: Run Efficient Iterations

    Jan 6, 2025 · An iterable is an object that can be passed to the iter () function to get an iterator, while an iterator is an object that implements both .__iter__ () and .__next__ () methods to produce items one …

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