From 1b93f8c7ee63f9d85d08d01f3102d8db3bfc4905 Mon Sep 17 00:00:00 2001 From: Andrea Ierardi Date: Tue, 11 Feb 2020 11:25:51 +0100 Subject: [PATCH] up --- Lezione2.ipynb | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/Lezione2.ipynb b/Lezione2.ipynb index 36b8fc7a9..fc3e963b2 100644 --- a/Lezione2.ipynb +++ b/Lezione2.ipynb @@ -9,7 +9,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 2, "metadata": {}, "outputs": [ { @@ -21,10 +21,35 @@ } ], "source": [ - "\n", - "\n", "print(\"TEST\")" ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "1\n", + "2\n", + "3\n", + "4\n", + "5\n", + "6\n", + "7\n", + "8\n", + "9\n" + ] + } + ], + "source": [ + "for i in range(10):\n", + " print(i)" + ] } ], "metadata": {