From 3fc8d56fa4c718e914074cb610489ea14364d4be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=B5=D1=80=D0=B0=20=D0=92=D0=B8=D0=BD=D0=BE=D0=B3?= =?UTF-8?q?=D1=80=D0=B0=D0=B4=D0=BE=D0=B2=D0=B0?= Date: Wed, 23 Apr 2025 19:34:44 +0000 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B8=D1=82=D1=8C=20sc?= =?UTF-8?q?ript.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script.py | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 script.py diff --git a/script.py b/script.py deleted file mode 100644 index 0d16f1f..0000000 --- a/script.py +++ /dev/null @@ -1,9 +0,0 @@ -with open('data.txt', 'r', encoding='utf-8') as file: - lines = file.readlines() - -upper_lines = [line.upper() for line in lines] - -with open('output.txt', 'w', encoding='utf-8') as file: - file.writelines(upper_lines) - -print("Файл output.txt успешно создан.")