{"nbformat":4,"nbformat_minor":0,"metadata":{"colab":{"provenance":[],"generative_ai_disabled":true,"authorship_tag":"ABX9TyPtjhM11EF1qGmgHEWNzpq5"},"kernelspec":{"name":"python3","display_name":"Python 3"},"language_info":{"name":"python"}},"cells":[{"cell_type":"code","execution_count":null,"metadata":{"id":"ef_q9mNnzzwF"},"outputs":[],"source":["# Task 1\n","countries = [\"UK\", \"USA\", \"Chad\", \"Australia\", \"Thailand\"]\n","\n","# Add comments to the code to explain what the following lines do.\n","\n","countries[3] = \"Mexico\"\n","\n","countries[0] = \"Iceland\"\n","\n","countries[1] = countries[4]\n","\n","# Add comments to predict what the list looks like now.\n","\n","# Add a line of code to print the whole list and check your prediction"]},{"cell_type":"code","source":["# Task 2\n","\n","squareNumbers = [1,4,9,16,25,36]\n","\n","# Add comments to explain what the following lines of code do.\n","\n","squareNumbers[5] = 49\n","\n","squareNumbers[0] +=1\n","\n","total = squareNumbers[3] - squareNumbers[1]\n","\n","# Add comments to predict what the list looks like now.\n","\n","# Add a line of code to print the whole list and check your prediction"],"metadata":{"id":"DZgw_3GO0CV4"},"execution_count":null,"outputs":[]},{"cell_type":"code","source":[],"metadata":{"id":"mP7nhQXZ0GUu"},"execution_count":null,"outputs":[]}]}