Sorting lists/typles

What if there are three parts: Product name, price and date (that is, (“Product1”, 10, “12 January”)?

I want to order the following items according to the date. Any help would be appreciated

items = [
    ("Product1", "10", "Jan 24"),
    ("Product2", "9", "Jan 13"),
    ("Product3", "12""Jan 25"),
]

Finally! I got what the number in square brackets as in

item[1]

So, just put 2 instead of 1! The number is the index of each item in the list!
Product1, 12, Jan. 15
____0_______1____2

items.sort(key=lambda item:item[2])

print(items)