pizza_inventory = ['bacon','durian','bacon','bacon','chicken','durian'] while 'bacon' in pizza_inventory :     pizza_inventory.remove('bacon')     print('A bacon pizza was deleted from list.') if 'bacon' not in pizza_inventory:     print('There is really no bacon in piz...