{
 "cells": [
  {
   "cell_type": "markdown",
   "id": "175a2318",
   "metadata": {},
   "source": [
    "# 07-25 · Przewidywam: clear, reset, home\n",
    "\n",
    "Praktyka do sekcji [„clear(), reset() i home()”"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "a619cc1a",
   "metadata": {},
   "source": [
    "## Cel\n",
    "\n",
    "Pamiętaj, które z trzech komend porusza żółwiem, a które nie."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "c1cfe60a",
   "metadata": {},
   "source": [
    "## Sprawa robocza\n",
    "\n",
    "Przewidź: clear() porusza żółwia?"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "id": "a15aff61",
   "metadata": {
    "execution": {
     "iopub.execute_input": "2026-08-16T15:17:11.296880Z",
     "iopub.status.busy": "2026-08-16T15:17:11.296777Z",
     "iopub.status.idle": "2026-08-16T15:17:11.321646Z",
     "shell.execute_reply": "2026-08-16T15:17:11.321125Z"
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "False\n"
     ]
    }
   ],
   "source": [
    "clear_dvigaet_cherepashku = False\n",
    "print(clear_dvigaet_cherepashku)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ee2a366f",
   "metadata": {},
   "source": [
    "## Podstawowa praktyka zadań ★\n",
    "\n",
    "Dla każdego z trzech poleceń podaj (True/False), czy przesuwa żółwia do (0, 0): clear(), reset(), home(). Wyświetl trzy wartości przez spację jednym print(), w tej kolejności."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "id": "7e350c60",
   "metadata": {
    "execution": {
     "iopub.execute_input": "2026-08-16T15:17:11.322683Z",
     "iopub.status.busy": "2026-08-16T15:17:11.322512Z",
     "iopub.status.idle": "2026-08-16T15:17:11.324680Z",
     "shell.execute_reply": "2026-08-16T15:17:11.324327Z"
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "False True True\n"
     ]
    }
   ],
   "source": [
    "clear_dvigaet = False\n",
    "reset_dvigaet = True\n",
    "home_dvigaet = True\n",
    "print(clear_dvigaet, reset_dvigaet, home_dvigaet)"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Cartesian Python 3.14",
   "language": "python",
   "name": "cartesian-python314"
  },
  "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.14.6"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
