Tertius wrote: > Is there a method to create a dict from a list of keys and a list of > values ? >>> dict(zip(range(3), "abc")) {0: 'a', 1: 'b', 2: 'c'} Not a method() but a method. Peter