This is a great tutorial, but it doesn't answer all I need:
Combining two sorted lists in Python
I have two Python lists, each of which is a list of datetime, value pairs of data:
list_a = [['1241000884000', 3], ['1241004212000', 4], ['1241006473000', 11]]
and
list_x = [['1241000884000', 16], ['1241000992000', 16], ['1241001121000', 17], ['1241001545000', 19], ['1241004212000', 20], ['1241006473000', 22]]
- In fact, there are many list_a lists with different keys / values.
- All list_a datetimes are in list_x.
- I want to create a list_c list corresponding to each list_a that has each datetime from list_x and value_a / value_x.
Bonus:
In my real program, list_a is actually a list in a dictionary. The answer to the dictionary level will be as follows:
dict = {object_a: [['1241000884000', 3], ['1241004212000', 4], ['1241006473000', 11]], object_b: [['1241004212000', 2]]}
I can understand that this is part.