Compare commits
5
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f8b4110807 | ||
|
|
9ceb175769 | ||
|
|
1ec929f17e | ||
|
|
76ee4f92b5 | ||
|
|
8b450cec9c |
@@ -0,0 +1,2 @@
|
|||||||
|
.vevn/
|
||||||
|
output.txt
|
||||||
@@ -1,3 +1 @@
|
|||||||
Койков Антон Иванович
|
создано окружение, файл .gitignore и README
|
||||||
Андрей
|
|
||||||
Вика
|
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
МОЛОКО
|
||||||
|
ХЛЕБ
|
||||||
|
КОЛБАСА
|
||||||
|
ЧЕХОСЛОВАКИЯ
|
||||||
@@ -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.")
|
||||||
Reference in New Issue
Block a user