I have the following data in Excel:
Column(A) Column(B) Column(C)
Header1 Header2 Header3
A 100 USD
B 200 USD
C 300 USD
D 400 USD
E 500 USD
... ... ...
I need to add this data to a dictionary in the following format (dict with tuples):
my_dict = {
"A":(100,"USD"),
"B":(200,"USD"),
"C":(300,"USD"),
"D":(400,"USD"),
"E":(500,"USD")
...
}
I have PyXll for Excel 2010 installed and working properly, and I am using Python 2.7.
In particular, I'm having trouble figuring out how to reference Excel cells with PyXll.