{
  "nbformat": 4,
  "nbformat_minor": 0,
  "metadata": {
    "colab": {
      "provenance": []
    },
    "kernelspec": {
      "name": "python3",
      "display_name": "Python 3"
    },
    "language_info": {
      "name": "python"
    }
  },
  "cells": [
    {
      "cell_type": "code",
      "execution_count": null,
      "metadata": {
        "id": "g4b9O6PCmUje"
      },
      "outputs": [],
      "source": [
        "# Task1 - Add comments to the code to predict the output on the three \"print\" lines.\n",
        "name1 = \"Ross\"\n",
        "name2 = \"Monica\"\n",
        "name3 = \"Joey\"\n",
        "name4 = \"Rachel\"\n",
        "name5 = \"Chandler\"\n",
        "\n",
        "print(name1 + \" and \" + name4)\n",
        "print(name3)\n",
        "\n",
        "name3 = \"Phoebe\"\n",
        "\n",
        "print(name3)\n"
      ]
    },
    {
      "cell_type": "code",
      "source": [
        "# Task 2 - Create a variable that stores the number 20.  Output the variable.  Multiply the variable by 10.  Output the variable.\n"
      ],
      "metadata": {
        "id": "bZSUlSbjmjpj"
      },
      "execution_count": null,
      "outputs": []
    }
  ]
}