So if I do something like:
>>> s ='abc'
>>> it = iter(s)
>>> print(it)
<str_iterator object at 0x10543eac8>
or:
>>> s = 'abc'
>>> it = iter(s)
>>> it
<iterator object at 0x00A1DB50>
We have in both cases the indication that "it" is an iterator (with the specification of what kind of iterator in the first example). What I am curious about is the meaning of the string that follows. 0x10543eac8 or 0x00A1DB50.
Does anyone know its meaning and/or use?
Thank you, Den