Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save panicpotatoe/c267f1a67d121c74cb73de0179b31dc0 to your computer and use it in GitHub Desktop.
Save panicpotatoe/c267f1a67d121c74cb73de0179b31dc0 to your computer and use it in GitHub Desktop.
Created on Skills Network Labs
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# requirement\n",
"Create a new repository on your Github account and name it Coursera_Capstone. I have prepared a guide to walk you through the process of creating a repository and setting it up. For Mac users, click here. For Windows users, click here.\n",
"\n",
"Now, start a Jupyter Notebook using any platform that you are comfortable with and do the following:\n",
"\n",
" Write some markdown to explain that this notebook will be mainly used for the capstone project.\n",
" Import the pandas library as pd.\n",
" Import the Numpy library as np.\n",
" Print the following the statement: Hello Capstone Project Course!\n",
"\n",
"Push the Notebook to your Github repository and submit a link to the notebook on your Github repository."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Hello Capstone Project Course!\n"
]
}
],
"source": [
"import pandas as pd\n",
"import numpy as np\n",
"print(\"Hello Capstone Project Course!\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python",
"language": "python",
"name": "conda-env-python-py"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.10"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment