From 1a9d2618519d882240d0f06e2b1109922f08e8bc Mon Sep 17 00:00:00 2001 From: LevaInformatik <111689867+LevaInformatik@users.noreply.github.com> Date: Mon, 19 Sep 2022 21:54:34 +0300 Subject: [PATCH 1/2] =?UTF-8?q?=D0=B3=D0=BE=D1=82=D0=BE=D0=B2=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- homework00/hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homework00/hello.py b/homework00/hello.py index efe8767..fd47cac 100644 --- a/homework00/hello.py +++ b/homework00/hello.py @@ -1,5 +1,5 @@ def get_greeting(name: str) -> str: - pass + return "Hello, "+name+"!" if __name__ == "__main__": From 514c4fdc0a44ed1bf69e722ea69b61723c1bfe70 Mon Sep 17 00:00:00 2001 From: LevaInformatik <111689867+LevaInformatik@users.noreply.github.com> Date: Mon, 19 Sep 2022 22:10:02 +0300 Subject: [PATCH 2/2] ++ --- homework00/hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homework00/hello.py b/homework00/hello.py index fd47cac..337fb30 100644 --- a/homework00/hello.py +++ b/homework00/hello.py @@ -1,5 +1,5 @@ def get_greeting(name: str) -> str: - return "Hello, "+name+"!" + return "Hello, " + name + "!" if __name__ == "__main__":