From 4c7f7f4387911ba83c2c0458749f3c28ba9febb1 Mon Sep 17 00:00:00 2001 From: Alexander Hess Date: Tue, 13 Oct 2020 11:15:33 +0200 Subject: [PATCH] Store notebooks with execution output --- chapter_00_intro/00_content.ipynb | 37 ++++++++++++++++++++++++++----- 1 file changed, 32 insertions(+), 5 deletions(-) diff --git a/chapter_00_intro/00_content.ipynb b/chapter_00_intro/00_content.ipynb index bbc1dce..0d52716 100644 --- a/chapter_00_intro/00_content.ipynb +++ b/chapter_00_intro/00_content.ipynb @@ -220,26 +220,45 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": { "slideshow": { "slide_type": "slide" } }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "3" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "1 + 2" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": { "slideshow": { "slide_type": "fragment" } }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hello World\n" + ] + } + ], "source": [ "print(\"Hello World\")" ] @@ -267,7 +286,15 @@ "slide_type": "skip" } }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Python 3.8.6\n" + ] + } + ], "source": [ "!python --version" ]