In Python, I am having 4 lists one and want one of them to become my dictionary key and the rest become my key value, but the list length is different
Employee_ManagerDic = {}
EmployeeID_List = [111,222,333,444,555]
EmployeeFirstName_List = ['a','b','c','d','e']
managerID_List = [888,777,666]
managerFirstName_List = ['f','g','h']
and the output I want is in this format:
Employee_ManagerDic = {EmployeeID_List:[EmployeeFirstName_List,managerID_List,
managerFirstName_List]}
and something like this
Employee_managerDic = {
111:['a',888,'f'],
222:['b',777,'g'],
333:['c',666,'h'],
444:['d',null,null],
555:['e',null,null]}
I know I may need to use for loop for this but I don't know how to structure the logic of the loop.
Thank you