I have a file comprising three columns, i.e.
a 1 4
b 2 5
c 3 6
I wish to read this file to a dictionary so that column 1 is the key and
column 2 and 3 is the value, i.e.,
dict = {'a': (1,4), 'b': (2,5), 'c': (3,6)}
Does anyone have a command for this?