From c050d751a2124d34d4c4f9581c94a798d8c1a229 Mon Sep 17 00:00:00 2001 From: Denis Prusakov Date: Fri, 4 Aug 2023 22:54:54 +0300 Subject: [PATCH] add task4 docsring --- str_func.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/str_func.py b/str_func.py index 335bafd..69778a4 100644 --- a/str_func.py +++ b/str_func.py @@ -6,5 +6,8 @@ def upp_text(input_text): return upp_text() def title_text(input_text): + """ + выводит первые заглавные буквы + """ title_text = input_text.title() return title_text() \ No newline at end of file