From c901b29f1324f4b5633b5bf42f9c24fb53ca4b87 Mon Sep 17 00:00:00 2001 From: Ulrich <ulrich.kerzel@rwth-aachen.de> Date: Tue, 28 Feb 2023 10:00:34 +0100 Subject: [PATCH] remove solution from one of the exercises --- pythonintro/FlowControl.ipynb | 25 +++++-------------------- 1 file changed, 5 insertions(+), 20 deletions(-) diff --git a/pythonintro/FlowControl.ipynb b/pythonintro/FlowControl.ipynb index da3f28e..5d44cde 100644 --- a/pythonintro/FlowControl.ipynb +++ b/pythonintro/FlowControl.ipynb @@ -170,28 +170,13 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 1, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "a is greater than 25\n", - "a is not greater than 30\n" - ] - } - ], + "outputs": [], "source": [ "a = 27\n", "\n", - "# ... your code here ...\n", - "if a > 25:\n", - " print ('a is greater than 25')\n", - " if a > 30:\n", - " print('a is greater than 30')\n", - " else:\n", - " print('a is not greater than 30')" + "# ... your code here ...\n" ] }, { @@ -502,7 +487,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3.10.6 ('pythonintro-A08DqnGu-py3.10')", + "display_name": "pythonintro-NlsZwE_T-py3.10", "language": "python", "name": "python3" }, @@ -521,7 +506,7 @@ "orig_nbformat": 4, "vscode": { "interpreter": { - "hash": "eb3a944512c48027e49906d9e47d21cfb9b2c1ddd33f9b79c72df4b5e3a553dc" + "hash": "e79a103ddccd343bb7d1be701b671c098efc420295b660c764763b93be962cdf" } } }, -- GitLab