From fd890fe9a8bf8feda8485f77c9c0a002351bb788 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=D0=BE=D0=BB=D1=8C=D0=B7=D0=BE=D0=B2=D0=B0=D1=82?= =?UTF-8?q?=D0=B5=D0=BB=D1=8C=20=E2=84=96=203=20=D0=B0=D1=83=D0=B4=D0=B8?= =?UTF-8?q?=D1=82=D0=BE=D1=80=D0=B8=D0=B8=20=D0=96-111?= Date: Mon, 1 Sep 2025 15:35:58 +0300 Subject: [PATCH] Ready report --- TEMA1/report.md | 88 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) diff --git a/TEMA1/report.md b/TEMA1/report.md index e69de29..87864dd 100644 --- a/TEMA1/report.md +++ b/TEMA1/report.md @@ -0,0 +1,88 @@ +# Отчет по теме 1 + +Турханов Артем, А-03-23 + +## 1 Изучение среды IDLE + +## 1.1 Настройка текущего каталога + +``` +>>> import os +>>> os.chdir('C:\\Users\\u111-03\\python-labs\\TEMA1\\') +>>> os.getcwd() +'C:\\Users\\u111-03\\python-labs\\TEMA1' +>>> +============================== RESTART: C:/Users/u111-03/python-labs/TEMA1/Pr0.py ============================= +Hello +Your name = Artem +>>> import Pr0 +Hello +Your name = Artem +>>> +============================== RESTART: C:\Users\u111-03\python-labs\TEMA1\Pr0.py ============================= +Hello +Your name = Artem +>>> import prb1 +Как Вас зовут? Artem +Привет, Artem +>>> help(print) +Help on built-in function print in module builtins: + +print(*args, sep=' ', end='\n', file=None, flush=False) + Prints the values to a stream, or to sys.stdout by default. + + sep + string inserted between values, default a space. + end + string appended after the last value, default a newline. + file + a file-like object (stream); defaults to the current sys.stdout. + flush + whether to forcibly flush the stream. + +>>> help(print), help(input) +Help on built-in function print in module builtins: + +print(*args, sep=' ', end='\n', file=None, flush=False) + Prints the values to a stream, or to sys.stdout by default. + + sep + string inserted between values, default a space. + end + string appended after the last value, default a newline. + file + a file-like object (stream); defaults to the current sys.stdout. + flush + whether to forcibly flush the stream. + +Help on built-in function input in module builtins: + +input(prompt='', /) + Read a string from standard input. The trailing newline is stripped. + + The prompt string, if given, is printed to standard output without a + trailing newline before reading input. + + If the user hits EOF (*nix: Ctrl-D, Windows: Ctrl-Z+Return), raise EOFError. + On *nix systems, readline is used if available. + +(None, None) + +>>> +============== RESTART: C:\Users\u111-03\python-labs\TEMA1\prb1.py ============= +Как Вас зовут? Artem +Привет, Artem + +>>> +========== RESTART: C:\Users\u111-03\python-labs\TEMA1\tdemo_chaos.py ========== +Traceback (most recent call last): + File "C:\Users\u111-03\python-labs\TEMA1\tdemo_chaos.py", line 58, in + main() + File "C:\Users\u111-03\python-labs\TEMA1\tdemo_chaos.py", line 50, in main + plot(g, 0.35, "green") + File "C:\Users\u111-03\python-labs\TEMA1\tdemo_chaos.py", line 41, in plot + dot(5) + File "", line 5, in dot +turtle.Terminator + +``` \ No newline at end of file