From ce957424dd25568cfb10b4c5f9a0c89d2bdeb915 Mon Sep 17 00:00:00 2001 From: mxrget <2024kalinin.ma@student.letovo.ru> Date: Tue, 22 Oct 2024 23:49:12 +0300 Subject: [PATCH 1/7] =?UTF-8?q?homework00=20=D0=9A=D0=B0=D0=BB=D0=B8=D0=BD?= =?UTF-8?q?=D0=B8=D0=BD=20=D0=9C.=D0=90.=201.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hello_world.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 hello_world.py diff --git a/hello_world.py b/hello_world.py new file mode 100644 index 00000000..676a2673 --- /dev/null +++ b/hello_world.py @@ -0,0 +1,9 @@ +"""Тестовая программа, просто передаёт строку на вывод""" + + +def text(txt: str) -> str: + """Функция передаёт на вывод строку""" + return txt + + +print(text("hello world!")) From 0d248116d0f98f5e146b5638228bc9be930e3589 Mon Sep 17 00:00:00 2001 From: mxrget <2024kalinin.ma@student.letovo.ru> Date: Mon, 4 Nov 2024 19:53:32 +0300 Subject: [PATCH 2/7] =?UTF-8?q?homework00=201.2=20=D0=9A=D0=B0=D0=BB=D0=B8?= =?UTF-8?q?=D0=BD=D0=B8=D0=BD=20=D0=9C.=D0=90.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hello_world.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/hello_world.py b/hello_world.py index 676a2673..cdec6c9e 100644 --- a/hello_world.py +++ b/hello_world.py @@ -1,9 +1,10 @@ """Тестовая программа, просто передаёт строку на вывод""" -def text(txt: str) -> str: - """Функция передаёт на вывод строку""" - return txt +def text(): + """Функция просто выводит строку message""" + return "message" -print(text("hello world!")) + +print(text()) From 3511562acc3ea335797a4d17576d6efc62c3a597 Mon Sep 17 00:00:00 2001 From: mxrget <2024kalinin.ma@student.letovo.ru> Date: Wed, 15 Jan 2025 16:29:52 +0500 Subject: [PATCH 3/7] =?UTF-8?q?homework00=20=D0=9A=D0=B0=D0=BB=D0=B8=D0=BD?= =?UTF-8?q?=D0=B8=D0=BD=20=D0=9C.=D0=90.=201.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hello_world.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/hello_world.py b/hello_world.py index cdec6c9e..fa0f2201 100644 --- a/hello_world.py +++ b/hello_world.py @@ -1,10 +1,2 @@ -"""Тестовая программа, просто передаёт строку на вывод""" - - def text(): - """Функция просто выводит строку message""" - - return "message" - - -print(text()) + return message From d5dbd89cccb087be3f392bf5563f8254a98e700b Mon Sep 17 00:00:00 2001 From: mxrget <2024kalinin.ma@student.letovo.ru> Date: Tue, 21 Jan 2025 14:08:00 +0500 Subject: [PATCH 4/7] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B5=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hello_world.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/hello_world.py b/hello_world.py index fa0f2201..cdec6c9e 100644 --- a/hello_world.py +++ b/hello_world.py @@ -1,2 +1,10 @@ +"""Тестовая программа, просто передаёт строку на вывод""" + + def text(): - return message + """Функция просто выводит строку message""" + + return "message" + + +print(text()) From 12cdd4200bd2f9729206a542d79693b35f7e4c39 Mon Sep 17 00:00:00 2001 From: mxrget <2024kalinin.ma@student.letovo.ru> Date: Thu, 23 Jan 2025 15:25:17 +0300 Subject: [PATCH 5/7] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BE=D0=BA?= =?UTF-8?q?,=20=D1=82=D0=B5=D0=BF=D0=B5=D1=80=D1=8C=20=D0=B7=D0=B4=D0=B5?= =?UTF-8?q?=D1=81=D1=8C=20=D0=B4=D0=BE=D0=BB=D0=B6=D0=B5=D0=BD=20=D0=B1?= =?UTF-8?q?=D1=8B=D1=82=D1=8C=20=D0=BD=D1=83=D0=B6=D0=BD=D1=8B=D0=B9=20?= =?UTF-8?q?=D1=84=D0=B0=D0=B9=D0=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hello_world.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hello_world.py b/hello_world.py index cdec6c9e..0a874907 100644 --- a/hello_world.py +++ b/hello_world.py @@ -1,10 +1,9 @@ """Тестовая программа, просто передаёт строку на вывод""" - def text(): + """Функция просто выводит строку message""" return "message" - print(text()) From 5c8ebf5e3c30e0d4a77f2cdc8dc787d55f469fcb Mon Sep 17 00:00:00 2001 From: mxrget <2024kalinin.ma@student.letovo.ru> Date: Sun, 26 Jan 2025 14:51:39 +0300 Subject: [PATCH 6/7] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BE=D0=BA?= =?UTF-8?q?=20=D0=B8=20=D0=BD=D0=B5=D1=80=D0=B0=D0=B7=D0=B1=D0=B5=D1=80?= =?UTF-8?q?=D0=B8=D1=85=D0=B8=20=D1=81=20=D1=84=D0=B0=D0=B9=D0=BB=D0=B0?= =?UTF-8?q?=D0=BC=D0=B8=20(=D0=BD=D0=B0=D0=B4=D0=B5=D1=8E=D1=81=D1=8C)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hello_world.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hello_world.py b/hello_world.py index 0a874907..c98c8f36 100644 --- a/hello_world.py +++ b/hello_world.py @@ -1,9 +1,7 @@ """Тестовая программа, просто передаёт строку на вывод""" -def text(): +def text(): """Функция просто выводит строку message""" return "message" - -print(text()) From 095126353327dba254fe00173ade47655d289335 Mon Sep 17 00:00:00 2001 From: mxrget <2024kalinin.ma@student.letovo.ru> Date: Sun, 26 Jan 2025 15:02:08 +0300 Subject: [PATCH 7/7] =?UTF-8?q?=D0=95=D1=89=D1=91=20=D0=BE=D0=B4=D0=BD?= =?UTF-8?q?=D0=BE=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5=20=D0=BD=D0=B5=D1=80=D0=B0=D0=B7=D0=B1=D0=B5=D1=80?= =?UTF-8?q?=D0=B8=D1=85=D0=B8=20=D1=81=20=D1=84=D0=B0=D0=B9=D0=BB=D0=B0?= =?UTF-8?q?=D0=BC=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- homework00/hello_world.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/homework00/hello_world.py b/homework00/hello_world.py index fa0f2201..c98c8f36 100644 --- a/homework00/hello_world.py +++ b/homework00/hello_world.py @@ -1,2 +1,7 @@ +"""Тестовая программа, просто передаёт строку на вывод""" + + def text(): - return message + """Функция просто выводит строку message""" + + return "message"