I have multiple datasets and sheets of data of these(excel).
It's train time tables
depart a a a a
arrive t t t t
Train z1 z2 z3 z4
station
a
as 6:30:00 7:47:00 8:18:00 9:45:00
b
bs 6:33:00 7:50:00 8:21:00 9:48:00
c 6:35:00 7:52:00 8:23:00 9:50:00
cs 6:35:30 7:52:30 8:23:30 9:50:30
I try to put the data into collection or dictionary To pull out data (mainly time) by train and station, or by time and station etc.
For dictionary, Seems like I need nested dictionary
For collection, may I loop through all item by criteria?
Can anyone give me a hint what method to use for getting data(time or station or train)?
Any advice would be appreciated. Thank you