{
 "cells": [
  {
   "cell_type": "markdown",
   "id": "175a2318",
   "metadata": {},
   "source": [
    "# 07-25 · Предскажите: clear, reset, home\n",
    "\n",
    "Практика к разделу [«clear(), reset() и home()»](../../site/chapters/glava-07/07-20-clear-reset-home.html) — чистое рассуждение, без окна Turtle."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "a619cc1a",
   "metadata": {},
   "source": [
    "## Цель\n",
    "\n",
    "Запомнить, какая из трёх команд двигает черепашку, а какая — нет."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "c1cfe60a",
   "metadata": {},
   "source": [
    "## Рабочий пример\n",
    "\n",
    "Предскажите: clear() двигает черепашку?"
   ]
  },
  {
   "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": [
    "## Задание ★ Базовая практика\n",
    "\n",
    "Для каждой из трёх команд укажите (True/False), двигает ли она черепашку в (0, 0): clear(), reset(), home(). Выведите три значения через пробел одним print(), в этом порядке."
   ]
  },
  {
   "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
}
