You can use dict comprehension for this:
updatedObj = {key: value for key, value in zip(keys, Values)}
OR:
updatedObj = dict(zip(keys, Values)) # even more simpler than dict comprehesion
Hope this will solve your problem.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…