{"nbformat":4,"nbformat_minor":0,"metadata":{"colab":{"provenance":[],"generative_ai_disabled":true,"authorship_tag":"ABX9TyOMacewB5hDiFZOyWF/TI0K"},"kernelspec":{"name":"python3","display_name":"Python 3"},"language_info":{"name":"python"}},"cells":[{"cell_type":"code","execution_count":null,"metadata":{"id":"XhHBYZjb0Omv"},"outputs":[],"source":["# Task 1\n","\n","food = [\"bacon\", \"cheese\", \"pasta\", \"beans\"]\n","\n","# Add comments to explain wht the following lines of code do.\n","\n","food.append(\"tomatoes\")\n","\n","food.insert(1, \"ice cream\")\n","\n","food.remove(\"cheese\")\n","\n","food.pop()\n","\n","# Add a comment to predict what the list looks like open\n","\n","# Write code to print the whole list.  Was your prediction correct?\n","\n"]}]}