D1 = {}D1['spam'] = 1D1['eggs'] = 3D1['toast'] = 5keys = ['spam', 'eggs', 'toast']vals = [1, 3, 5]print zip(keys, vals)