How to create a dictionary using two lists?

Hey, I wanted to create a dictionary using two lists and I can’t figure out how to, here are both the lists I want to concatenate into a dictionary:

['FName','LName','Dept']
['Safia','Faiz','DS']

into something like this:

{'FName':'Safia','LName':'Faiz','Dept':'DS'}

How can I do this? Can anyone give me its solution?