shoplist = ['apple', 'mango', 'carrot', 'banana'] print('I have ', len(shoplist), ' items to purchase.') print('These items are: ', end = '') for item in shoplist: print(item, end = ' ') print('\nI also have to buy rice.') shoplist.append('rice') pri…