{"nbformat":4,"nbformat_minor":0,"metadata":{"colab":{"provenance":[],"generative_ai_disabled":true,"authorship_tag":"ABX9TyOwSstKVlZNnTKcyESwfZBX"},"kernelspec":{"name":"python3","display_name":"Python 3"},"language_info":{"name":"python"}},"cells":[{"cell_type":"code","execution_count":null,"metadata":{"id":"Qtx7kEVM86b9"},"outputs":[],"source":["#Task 1 - Add comments to the code below to explain what it does\n","\n","name = \"Axl\"\n","\n","print(name)\n","\n","#Extra question - why isn't 'name' in quotation marks on line 5?\n"]},{"cell_type":"code","source":["#Task 2 - Concatenation\n","\n","#You can combine variables with strings in an output\n","\n","name1 = \"Axl\"\n","name2 = \"Slash\"\n","#Add 2 more variables to store 'Duff' and 'Izzy'\n","\n","\n","#This line uses concatenation to join the variables together with the string 'and' to make a sentence.\n","\n","#Complete the line to output all of the variables\n","print(name1 + \" and \" + name2 + \" and \")\n"],"metadata":{"id":"iJMDabFL9dek"},"execution_count":null,"outputs":[]}]}