I have a list like this:
paths = [[\'test_data\', \'new_directory\', \'ok.txt\'], [\'test_data\', \'reads_1.fq\'], [\'test_data\', \'test_ref.fa\']] <
paths = [[\'test_data\', \'new_directory\', \'ok.txt\'], [\'test_data\', \'reads_1.fq\'], [\'test_data\', \'test_ref.fa\']]
can try this also,
list1=['a','b','c','d'] list2=[1,2,3,4]
we want to zip these two lists and create a dictionary dict_list
dict_list = zip(list1, list2) dict(dict_list)
this will give:
dict_list = {'a':1, 'b':2, 'c':3, 'd':4 }