fork download
  1. name = ['A', 'B', 'C']
  2. path = ['p/A', 'p/B', 'p/C']
  3. your_dict = dict(zip(name, path))
  4. print(your_dict)
Success #stdin #stdout 0.02s 9268KB
stdin
Standard input is empty
stdout
{'A': 'p/A', 'B': 'p/B', 'C': 'p/C'}