From de1529eb7f7f35c648dcd2586db16bde28e438b5 Mon Sep 17 00:00:00 2001 From: KireevYP Date: Mon, 20 Oct 2025 06:42:18 +0000 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB(?= =?UTF-8?q?=D0=B0)=20=D0=BD=D0=B0=20'TEMA4/task.md'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TEMA4/task.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TEMA4/task.md b/TEMA4/task.md index 96f0622..284485d 100644 --- a/TEMA4/task.md +++ b/TEMA4/task.md @@ -21,8 +21,8 @@ 2. ```py >>> import time ->>> localTime = time.localtime() ->>> print("Current time: {}:{}".format(localTime.tm_hour, localTime.tm_min)) +>>> MosTime = time.gmtime() +>>> print("Current time: {}:{}".format(MosTime.tm_hour + 3, MosTime.tm_min)) Current time: 19:52 ``` 3.