diff --git a/CodeExamples/Hello.ipynb b/CodeExamples/Hello.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..63a90c5f73b159f1fabaab215ca5550f92e5c685 --- /dev/null +++ b/CodeExamples/Hello.ipynb @@ -0,0 +1,47 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "6838b2de", + "metadata": {}, + "source": [ + "# Hello" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4200d243", + "metadata": {}, + "outputs": [], + "source": [ + "\"\"\"\n", + " This is basic Hello World programme in Python.\n", + "\"\"\"\n", + "\n", + "print(\"Hello world, and welcome to Python\")" + ] + } + ], + "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.7" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}