<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title>Bing: Iterable Objects</title><link>http://www.bing.com:80/search?q=Iterable+Objects</link><description>Search results</description><image><url>http://www.bing.com:80/s/a/rsslogo.gif</url><title>Iterable Objects</title><link>http://www.bing.com:80/search?q=Iterable+Objects</link></image><copyright>Copyright © 2026 Microsoft. All rights reserved. These XML results may not be used, reproduced or transmitted in any manner or for any purpose other than rendering Bing results within an RSS aggregator for your personal, non-commercial use. Any other use of these results requires express written permission from Microsoft Corporation. By accessing this web page or using these results in any manner whatsoever, you agree to be bound by the foregoing restrictions.</copyright><item><title>What are iterator, iterable, and iteration? - Stack Overflow</title><link>https://stackoverflow.com/questions/9884132/what-are-iterator-iterable-and-iteration</link><description>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, etc. in Python, the next method is called automatically to get each item from the iterator, thus going through the process of iteration.</description><pubDate>Sun, 05 Apr 2026 19:11:00 GMT</pubDate></item><item><title>What exactly does "iterable" mean in Python? Why isn't my object which ...</title><link>https://stackoverflow.com/questions/32799980/what-exactly-does-iterable-mean-in-python-why-isnt-my-object-which-implement</link><description>First I want to clarify, I'm NOT asking what is "iterator". This is how the term "iterable" is defined in Python's doc: iterable An object capable of returning its members one at a time.</description><pubDate>Tue, 31 Mar 2026 03:39:00 GMT</pubDate></item><item><title>Python: how to determine if an object is iterable?</title><link>https://stackoverflow.com/questions/1952464/python-how-to-determine-if-an-object-is-iterable</link><description>Checking isinstance(obj, Iterable) detects classes that are registered as Iterable or that have an __iter__() method, but it does not detect classes that iterate with the __getitem__() method. The only reliable way to determine whether an object is iterable is to call iter(obj).</description><pubDate>Wed, 25 Mar 2026 08:40:00 GMT</pubDate></item><item><title>java - What is the difference between iterator and iterable and how to ...</title><link>https://stackoverflow.com/questions/6863182/what-is-the-difference-between-iterator-and-iterable-and-how-to-use-them</link><description>An Iterable is a simple representation of a series of elements that can be iterated over. It does not have any iteration state such as a "current element". Instead, it has one method that produces an Iterator. An Iterator is the object with iteration state. It lets you check if it has more elements using hasNext() and move to the next element (if any) using next(). Typically, an Iterable ...</description><pubDate>Thu, 02 Apr 2026 15:04:00 GMT</pubDate></item><item><title>TypeError: 'NoneType' object is not iterable - Stack Overflow</title><link>https://stackoverflow.com/questions/3887381/typeerror-nonetype-object-is-not-iterable</link><description>For example if data is a value returned from a function, then make sure that function returns an iterable object (such as list, numpy ndarray, pandas DataFrame etc.). If data is the value returned from some API call, make sure to check that the request returned an iterable object.</description><pubDate>Sat, 04 Apr 2026 03:20:00 GMT</pubDate></item><item><title>Java 8 Iterable.forEach() vs foreach loop - Stack Overflow</title><link>https://stackoverflow.com/questions/16635398/java-8-iterable-foreach-vs-foreach-loop</link><description>When running with "-client", Iterable#forEach outperforms the traditional for loop over an ArrayList, but is still slower than directly iterating over an array.</description><pubDate>Thu, 02 Apr 2026 22:56:00 GMT</pubDate></item><item><title>python - How to build a basic iterator? - Stack Overflow</title><link>https://stackoverflow.com/questions/19151/how-to-build-a-basic-iterator</link><description>If you want to be able to iterate ctr more than once, it needs to be a non-iterator iterable, where it returns a brand new iterator each time __iter__ is invoked. Trying to mix and match (an iterator that is implicitly reset when __iter__ is invoked) violates the protocols.</description><pubDate>Thu, 02 Apr 2026 20:33:00 GMT</pubDate></item><item><title>how to tell a variable is iterable but not a string</title><link>https://stackoverflow.com/questions/1055360/how-to-tell-a-variable-is-iterable-but-not-a-string</link><description>I notice that the implementation of Iterable, now in _collections_abc.py, has changed so it also checks that the required __iter__ method isn't just None. And am I right in thinking this is equivalent to using isinstance(arg, collections.Iterable) and not isinstance(arg, str), except it just gives you a single ABC to check?</description><pubDate>Fri, 03 Apr 2026 00:58:00 GMT</pubDate></item><item><title>Checking whether something is iterable - Stack Overflow</title><link>https://stackoverflow.com/questions/18884249/checking-whether-something-is-iterable</link><description>As a sidenote, BEWARE about the definition of iterable. If you're coming from other languages you would expect that something you can iterate over with, say, a for loop is iterable. I'm afraid that's not the case here where iterable means something that implements the iteration protocol.</description><pubDate>Sun, 05 Apr 2026 20:08:00 GMT</pubDate></item><item><title>Python type hint for Iterable[str] that isn't str - Stack Overflow</title><link>https://stackoverflow.com/questions/71656644/python-type-hint-for-iterablestr-that-isnt-str</link><description>In Python, is there a way to distinguish between strings and other iterables of strings? A str is valid as an Iterable[str] type, but that may not be the correct input for a function. For example, in</description><pubDate>Fri, 03 Apr 2026 07:32:00 GMT</pubDate></item></channel></rss>