{
  "nbformat": 4,
  "nbformat_minor": 0,
  "metadata": {
    "colab": {
      "provenance": [],
      "generative_ai_disabled": true
    },
    "kernelspec": {
      "name": "python3",
      "display_name": "Python 3"
    },
    "language_info": {
      "name": "python"
    }
  },
  "cells": [
    {
      "cell_type": "code",
      "execution_count": null,
      "metadata": {
        "id": "FS3Ouqc30d1s"
      },
      "outputs": [],
      "source": [
        "videoGames = [\"Mario\", \"Sonic\", \"Joust\", \"Zelda\"]\n",
        "\n",
        "#Task 2\n",
        "\n",
        "# Write code to perform the following tasks.\n",
        "\n",
        "  # Add 'Minecraft' to the start of the list.\n"
      ]
    },
    {
      "cell_type": "code",
      "source": [
        " # Ask the user to input a number between 0 and 4 and store it in a variable.\n",
        " # Output the item at this position in the list.\n"
      ],
      "metadata": {
        "id": "vUP84EKXh9AA"
      },
      "execution_count": null,
      "outputs": []
    },
    {
      "cell_type": "code",
      "source": [
        "# Ask the user to input the name of a video game and store it in a variable.\n",
        "# If this video game is in the list then remove it from the list.  If it isn't\n",
        "# in the list then add it to the end.\n"
      ],
      "metadata": {
        "id": "KLZ0rRLViEiF"
      },
      "execution_count": null,
      "outputs": []
    }
  ]
}