I have 2 different list. I want make them as a dict. But there is some prblem.As you see from code its key,value in list.How to make it to a dict ealy?
I make key,value in list and idk how to convert to real dict one. I share code for list one thanks a lot
I tried from dict but dict has no append. Imagine like a csv file. Header is column (8 column) , data is row (585 row)
for i in range(0,len(self.data)):
for j in range(0,len(self.header)):
self.output.append(self.header[j]+':'+self.data[i][j])