I have an array and it has 4 elements and every element has 3 subelements;
myList = [['26.03.2019', 'Michelle', '8'], ['03.04.2019', 'Jack', '2'], ['01.04.2019', 'George', '2'], ['02.04.2019', 'Micheal', '8']]
As you see, every elements' first subelement is a date. And I want to order these elements with their dates. So I want that output when I enter print(myList)
;
[['26.03.2019', 'Michelle', '8'], ['01.04.2019', 'George', '2'], ['02.04.2019', 'Micheal', '8'], ['03.04.2019', 'Jack', '2']]
How can I do that? Can you give me a solution for this?