commit 4316e324d7b375b71298c5a99f664cc5fb369c5c Author: amhernandezcamacho Date: Mon Feb 1 12:06:58 2021 +0100 first test diff --git a/Practical_Git/Jupyter_Python_Example.ipynb b/Practical_Git/Jupyter_Python_Example.ipynb new file mode 100644 index 0000000..dbe6931 --- /dev/null +++ b/Practical_Git/Jupyter_Python_Example.ipynb @@ -0,0 +1,80 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "authorized-paris", + "metadata": {}, + "source": [ + "### Jupyter notebook and Python Fundamentals" + ] + }, + { + "cell_type": "markdown", + "id": "unnecessary-replica", + "metadata": {}, + "source": [ + "#### Git Basics" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "freelance-limitation", + "metadata": {}, + "outputs": [], + "source": [ + "student_names = ['Andrew', 'John', 'Nicholas', 'Thomas']" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "everyday-celebration", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'John'" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "student_names[1]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "buried-playback", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python", + "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.6.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}