{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "332ac1df-b313-4fbf-b8f9-ce5ae47f0aae",
   "metadata": {
    "execution": {
     "iopub.execute_input": "2025-10-07T06:37:36.052915Z",
     "iopub.status.busy": "2025-10-07T06:37:36.052543Z",
     "iopub.status.idle": "2025-10-07T06:37:36.058446Z",
     "shell.execute_reply": "2025-10-07T06:37:36.057448Z",
     "shell.execute_reply.started": "2025-10-07T06:37:36.052885Z"
    }
   },
   "outputs": [
    {
     "ename": "SyntaxError",
     "evalue": "incomplete input (3092977533.py, line 1)",
     "output_type": "error",
     "traceback": [
      "  \u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[3]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[31m    \u001b[39m\u001b[31mprint(\"Guten Morgen!\"\u001b[39m\n                         ^\n\u001b[31mSyntaxError\u001b[39m\u001b[31m:\u001b[39m incomplete input\n"
     ]
    }
   ],
   "source": [
    "print(\"Guten Morgen!\""
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "id": "554c0a61-e7f4-4286-880f-14cbaa4818c7",
   "metadata": {
    "execution": {
     "iopub.execute_input": "2025-10-07T06:41:05.039261Z",
     "iopub.status.busy": "2025-10-07T06:41:05.038885Z",
     "iopub.status.idle": "2025-10-07T06:41:05.043941Z",
     "shell.execute_reply": "2025-10-07T06:41:05.043093Z",
     "shell.execute_reply.started": "2025-10-07T06:41:05.039232Z"
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2\n",
      "5\n",
      "3\n"
     ]
    }
   ],
   "source": [
    "a = 2\n",
    "print(a)\n",
    "a = a + 3 \n",
    "print(a)\n",
    "a = 3\n",
    "print(a)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "id": "d1d623b6-aa51-4a33-9239-f6de780d1438",
   "metadata": {
    "execution": {
     "iopub.execute_input": "2025-10-07T06:55:15.109989Z",
     "iopub.status.busy": "2025-10-07T06:55:15.109632Z",
     "iopub.status.idle": "2025-10-07T06:55:15.113860Z",
     "shell.execute_reply": "2025-10-07T06:55:15.113079Z",
     "shell.execute_reply.started": "2025-10-07T06:55:15.109960Z"
    }
   },
   "outputs": [],
   "source": [
    "ergebnis = 0\n",
    "betrag = 159.49\n",
    "grenze = 30\n",
    "\n",
    "if betrag > 3 * grenze:\n",
    "    ergebnis = True\n",
    "else:\n",
    "    ergebnis = False"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "id": "3645001b-05a5-46e2-95d4-6840218ad227",
   "metadata": {
    "execution": {
     "iopub.execute_input": "2025-10-07T06:55:15.519961Z",
     "iopub.status.busy": "2025-10-07T06:55:15.519624Z",
     "iopub.status.idle": "2025-10-07T06:55:15.523907Z",
     "shell.execute_reply": "2025-10-07T06:55:15.523095Z",
     "shell.execute_reply.started": "2025-10-07T06:55:15.519918Z"
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "True\n"
     ]
    }
   ],
   "source": [
    "print(ergebnis)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "bdc016be-40cc-40f1-a78a-5e06fa381978",
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "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.12.11"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
