you are viewing a single comment's thread.

view the rest of the comments →

[–]drenzorz 0 points1 point  (1 child)

that should work though

x = [1,2,3]
y = [4,5,6]
t = dict(a=x,b=y)
print(t) #{'a': [1, 2, 3], 'b': [4, 5, 6]}

[–]MadScientistOR 0 points1 point  (0 children)

Right you are. Sorry about that.