print(fruit := [['Apples', 'Bananas'], ['Milk', 'Water']])
input('Press enter to change the content .....')
fruit[0].insert(0, 'Oranges')
fruit[1].insert(0, 'Coffee')
fruit[0].insert(3, 'Kiwis')
fruit[1].remove('Water')
fruit[1].insert(2, 'Tea')
fruit.insert(2, ['1', '2', '3'])
print(f'Here is the Updated basket \n{fruit}')
4 إعجابات