I have several list with dates written as strings in the format "2017-05-22 04:35:00". All lists are ordered. I want to create a new list with dates that are present in ALL other lists.
I have been using the following code:
new_dates = list(set(a)&set(b)&set(c)&set(d))
Apparently it is working, but the resulting list is not in chronological order anymore. Any idea why this is happening?