I have three lists that I would like to make into keys for an empty triple nested dictionary using dictionary comprehension. "Facility" is the outer key, "Products" is the middle key, and "Customer" is the inner key. How can I do this? Thanks in advance
Here are my lists that need to be made into keys:
Facility = ['Fac-1', 'Fac-2','Fac-3','Fac-4','Fac-5']
Products = ['45906','48402','80591','102795','107275','128067','129522',]
Customer = ["Apple","Samsung","Huawei","Nokia","Motorolla"]