Bart Nessux wrote: > What is the easiest/fastest way to build a dictionary from a list? The > list contains 100,000 entries. > > Thanks, > Bart >>> dict([(1,'a'),(2,'b')]) {1: 'a', 2: 'b'} list of tuples -> dict ! -- Yermat