From f0e08f316b9bccea36984a39c632b91f1e183eba Mon Sep 17 00:00:00 2001 From: mohika21 <106512765+mohika21@users.noreply.github.com> Date: Sat, 4 Jun 2022 00:24:27 +0530 Subject: [PATCH 1/3] Week1-Mohika-210623 --- Basics of Jupyter Notebook.ipynb | 205 ++++++++++++++++++++++++++++++ Installing Anaconda on Windows.md | 6 + 2 files changed, 211 insertions(+) create mode 100644 Basics of Jupyter Notebook.ipynb create mode 100644 Installing Anaconda on Windows.md diff --git a/Basics of Jupyter Notebook.ipynb b/Basics of Jupyter Notebook.ipynb new file mode 100644 index 0000000..b800449 --- /dev/null +++ b/Basics of Jupyter Notebook.ipynb @@ -0,0 +1,205 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 6, + "id": "5316666e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Basics of Jupyter Notebook\n" + ] + } + ], + "source": [ + "print('Basics of Jupyter Notebook')" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "59aaf1d7", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Jupyter Notebook is a web based interactive computing platform.\n" + ] + } + ], + "source": [ + "print('Jupyter Notebook is a web based interactive computing platform.')" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "dac9e6cb", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "It contains both code and rich text elements making it ideal for analysis description.\n" + ] + } + ], + "source": [ + "print('It contains both code and rich text elements making it ideal for analysis description.')" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "0b0f2a82", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Its two main components are the kernels and a dashboard.\n" + ] + } + ], + "source": [ + "print('Its two main components are the kernels and a dashboard.')" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "3bb9b552", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "A kernel is a language specific program that executes the user's code.\n" + ] + } + ], + "source": [ + "print(\"A kernel is a language specific program that executes the user's code.\")" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "9f9ce7fd", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The dashboard shows you the notebooks that you have made and manages the kernels.\n" + ] + } + ], + "source": [ + "print('The dashboard shows you the notebooks that you have made and manages the kernels.') " + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "930f68ec", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "You can run Jupyter Notebook with the Anaconda Python Distribution.\n" + ] + } + ], + "source": [ + "print('You can run Jupyter Notebook with the Anaconda Python Distribution.')" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "0ac7fa5d", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "To get started, run the command - jupyter notebook\n" + ] + } + ], + "source": [ + "print('To get started, run the command - jupyter notebook')" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "2c2a8beb", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "This opens the application in the web browser on the address localhost:8888\n" + ] + } + ], + "source": [ + "print('This opens the application in the web browser on the address localhost:8888')" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "d9200861", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "You can now explore Jupyter Notebook and discover all the features. You can make a new notebook by clicking on New in the Files tab\n" + ] + } + ], + "source": [ + "print('You can now explore Jupyter Notebook and discover all the features. You can make a new notebook by clicking on New in the Files tab')" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "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.9.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Installing Anaconda on Windows.md b/Installing Anaconda on Windows.md new file mode 100644 index 0000000..dff8013 --- /dev/null +++ b/Installing Anaconda on Windows.md @@ -0,0 +1,6 @@ +Installing Anaconda on Windows +1. To install Anaconda on Windows, go to https://www.anaconda.com/products/distribution#windows and download Anaconda for Windows. +2. Open the Set Up prompt on your device. +3. Set Up Anaconda and install it at the desired location on your device. +4. You are done with the installation. + From 499b6abbd014aa7cb26e046548997470b01131d9 Mon Sep 17 00:00:00 2001 From: mohika21 <106512765+mohika21@users.noreply.github.com> Date: Sat, 4 Jun 2022 00:35:33 +0530 Subject: [PATCH 2/3] Delete Basics of Jupyter Notebook.ipynb --- Basics of Jupyter Notebook.ipynb | 205 ------------------------------- 1 file changed, 205 deletions(-) delete mode 100644 Basics of Jupyter Notebook.ipynb diff --git a/Basics of Jupyter Notebook.ipynb b/Basics of Jupyter Notebook.ipynb deleted file mode 100644 index b800449..0000000 --- a/Basics of Jupyter Notebook.ipynb +++ /dev/null @@ -1,205 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 6, - "id": "5316666e", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Basics of Jupyter Notebook\n" - ] - } - ], - "source": [ - "print('Basics of Jupyter Notebook')" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "59aaf1d7", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Jupyter Notebook is a web based interactive computing platform.\n" - ] - } - ], - "source": [ - "print('Jupyter Notebook is a web based interactive computing platform.')" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "dac9e6cb", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "It contains both code and rich text elements making it ideal for analysis description.\n" - ] - } - ], - "source": [ - "print('It contains both code and rich text elements making it ideal for analysis description.')" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "id": "0b0f2a82", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Its two main components are the kernels and a dashboard.\n" - ] - } - ], - "source": [ - "print('Its two main components are the kernels and a dashboard.')" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "3bb9b552", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "A kernel is a language specific program that executes the user's code.\n" - ] - } - ], - "source": [ - "print(\"A kernel is a language specific program that executes the user's code.\")" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "9f9ce7fd", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "The dashboard shows you the notebooks that you have made and manages the kernels.\n" - ] - } - ], - "source": [ - "print('The dashboard shows you the notebooks that you have made and manages the kernels.') " - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "id": "930f68ec", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "You can run Jupyter Notebook with the Anaconda Python Distribution.\n" - ] - } - ], - "source": [ - "print('You can run Jupyter Notebook with the Anaconda Python Distribution.')" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "id": "0ac7fa5d", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "To get started, run the command - jupyter notebook\n" - ] - } - ], - "source": [ - "print('To get started, run the command - jupyter notebook')" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "id": "2c2a8beb", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "This opens the application in the web browser on the address localhost:8888\n" - ] - } - ], - "source": [ - "print('This opens the application in the web browser on the address localhost:8888')" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "id": "d9200861", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "You can now explore Jupyter Notebook and discover all the features. You can make a new notebook by clicking on New in the Files tab\n" - ] - } - ], - "source": [ - "print('You can now explore Jupyter Notebook and discover all the features. You can make a new notebook by clicking on New in the Files tab')" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "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.9.12" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} From 9d3950bdba2f53ddd9ac2f0b0d2b9ddfe016d855 Mon Sep 17 00:00:00 2001 From: mohika21 <106512765+mohika21@users.noreply.github.com> Date: Sat, 4 Jun 2022 00:36:18 +0530 Subject: [PATCH 3/3] Add files via upload --- Jupyter Notebook Basics.ipynb | 42 +++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Jupyter Notebook Basics.ipynb diff --git a/Jupyter Notebook Basics.ipynb b/Jupyter Notebook Basics.ipynb new file mode 100644 index 0000000..10bfaa3 --- /dev/null +++ b/Jupyter Notebook Basics.ipynb @@ -0,0 +1,42 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "2ea297b6", + "metadata": {}, + "source": [ + "Basics of Jupyter Notebook.\n", + "Jupyter Notebook is a web based interactive computing platform.\n", + "It contains both code and rich text elements making it ideal for analysis description.\n", + "Its two main components are the kernels and a dashboard.\n", + "A kernel is a language specific program that executes the user code.\n", + "The dashboard shows you the notebooks that you have made and manages the kernels.\n", + "You can run Jupyter Notebook with the Anaconda Python Distribution.\n", + "To get started, run the command - jupyter notebook\n", + "This opens the application in the web browser on the address localhost:8888\n", + "You can now explore Jupyter Notebook and discover all the features. You can make a new notebook by clicking on New in the Files tab" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "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.9.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}