name = ['A', 'B', 'C']
path = ['p/A', 'p/B', 'p/C']
your_dict = dict(zip(name, path))
print(your_dict)