Загрузить файлы в «/»

This commit is contained in:
Антон Койков 2025-03-11 19:12:04 +00:00
parent 76ee4f92b5
commit 1ec929f17e
5 changed files with 20 additions and 3 deletions

2
.gitignore.md Normal file
View File

@ -0,0 +1,2 @@
.vevn/
output.txt

View File

@ -1,3 +1 @@
Койков Антон Иванович Вариант : Установите numpy и pandas
Андрей
Янактаева Виктория Евгеньевна

4
data.txt Normal file
View File

@ -0,0 +1,4 @@
Молоко
Хлеб
Колбаса
Чехословакия

4
output.txt Normal file
View File

@ -0,0 +1,4 @@
МОЛОКО
ХЛЕБ
КОЛБАСА
ЧЕХОСЛОВАКИЯ

9
script.py Normal file
View File

@ -0,0 +1,9 @@
with open('data.txt', 'r', encoding='utf-8') as input_file:
lines = input_file.readlines()
upper_case_lines = [line.upper() for line in lines]
with open('output.txt', 'w', encoding='utf-8') as output_file:
output_file.writelines(upper_case_lines)
print("Данные успешно преобразованы и записаны в output.txt.")