From 11a6b8842ae2a9be3e62a0d3a99cec6b9d02ab97 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=206=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-207?= Date: Fri, 12 Sep 2025 11:29:26 +0300 Subject: [PATCH] report --- TEMA1/report.md | 79 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 TEMA1/report.md diff --git a/TEMA1/report.md b/TEMA1/report.md new file mode 100644 index 0000000..5f794a6 --- /dev/null +++ b/TEMA1/report.md @@ -0,0 +1,79 @@ +# Отчет по теме 1 + +Баранов Эмиль, А-03-23 + +## 1 Основы языка программирования Python + +## 1.1 Работа с command line + >>> print('Hello') +Hello +>>> h=input('Your name=') +Your name=Emil +>>> h +'Emil' +exit() +## 1.2 Настройки рабочего каталога IDLE среды Python +import os +os.chdir('C:\\Users\\u207-06\\Desktop\\python-labs\\TEMA1\\') +Изменил шрифт, размер начального окна, цвет комментариев на коричневый +## 1.3 Работа с программными файлами +--Создал программный файл Pr0.py с текстом: +#Программа по Теме 1 <ФИО студента> +print('Hello') +h=input('Your name=') +import os +os.chdir('C:\\Users\\u207-06\\Desktop\\python-labs\\TEMA1\\') +--Запустил модули различными способами +import Pr0 +Hello +Your name= +========================== RESTART: C:/Users/u207-06/Desktop/python-labs/TEMA1/Pr0.py ========================= +Hello +Your name=import Pr0 +import prb1.py +Как Вас зовут? Эмиль +Привет, Эмиль +## 1.4 Выполняем различные команды +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. + + +