dict(zip(lista,listb))
zip函数将lista,listb的元素两两组合在一起,dict将zip的返回值强制转换为字典
生成一个以lista成员为key,listb元素为value的字典