need your help again
I have 2 list:
PrivateIP = ['172.11.11.11', '172.22.22.22']
AccountID = ['123456', '678901']
Now, i want to convert those lists into dictionary:
Dicti = {'172.11.11.11': '123456', '172.22.22.22': '678901'}
How would i do it? Please advise