On Sun, 8 Jan 2017 08:48 am, Ethan Furman wrote:
> In Python 2 we have:
>
>dict().keys() \
>dict().items() --> separate list() of the results
>dict().values() /
>
> and
>
>dict().iter_keys() \
>dict().iter_items() --> integrated iter() of the results
>dict().it
On 01/07/2017 03:04 PM, Peter Otten wrote:
Ethan Furman wrote:
In Python 2 we have:
dict().keys() \
dict().items() --> separate list() of the results
dict().values() /
and
dict().iter_keys() \
dict().iter_items() --> integrated iter() of the results
dict().i
Ethan Furman wrote:
> In Python 2 we have:
>
>dict().keys() \
>dict().items() --> separate list() of the results
>dict().values() /
>
> and
>
>dict().iter_keys() \
>dict().iter_items() --> integrated iter() of the results
>dict().iter_values() /
I guess you di
In Python 2 we have:
dict().keys() \
dict().items() --> separate list() of the results
dict().values() /
and
dict().iter_keys() \
dict().iter_items() --> integrated iter() of the results
dict().iter_values() /
By "separate list" I mean a snapshot of the dict at the time,