My problem is similar to this.
Instead of populating the dictionary with a single number, I want to populate this with a string of numbers. I've got a long string of numbers separated at interval 7 by a comma.
I've got something like this,
values = '123456,789101,2345678' # (a string of numbers)
keys = [1,2,3]
I want to create a dictionary like something below:
my_dict = {1: '123456', 2: '789101', 3: '2345678'}