If I have a CSV file that looks like this:
Name | Value 1 | Value 2
Foobar | 22558841 | 96655
Barfool | 02233144 | 3301144
How can I make it into a dictionary that looks like this:
dict = {
'Foobar': {
'Value 1': 2255841,
'Value 2': 9665
},
'Barfool': {
'Value 1': 02233144,
'Value 2': 3301144
}
}