If I have an enumerate object x, why does doing the following:
dict(x)
clear all the items in the enumerate sequence?
|
If I have an enumerate object x, why does doing the following:
clear all the items in the enumerate sequence? |
|||
|
If you want to create a real sequence from a iterator you can call
|
||||
|
|
dict(enumerate(['a', 'b', 'c'])) = {0: 'a', 1: 'b', 2: 'c'}– Michal Čihař Apr 26 '10 at 13:33