items = [["Milk", 2], ["Egg", 5], ["Apple", 2]]

items.sort(key=lambda x: (x[1], x[0]))

print(items)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: