проверил, что не добавляется output.txt
This commit is contained in:
parent
9d1fcca8e9
commit
27e3dcfcfe
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,2 @@
|
||||
.venv/
|
||||
.venv/
|
||||
output.txt
|
12
script.py
Normal file
12
script.py
Normal file
@ -0,0 +1,12 @@
|
||||
# script.py
|
||||
|
||||
with open('data.txt', 'r', encoding='utf-8') as file:
|
||||
lines = file.readlines()
|
||||
|
||||
uppercase_lines = [line.strip().upper() for line in lines]
|
||||
|
||||
with open('output.txt', 'w', encoding='utf-8') as output_file:
|
||||
for line in uppercase_lines:
|
||||
output_file.write(line + '\n')
|
||||
|
||||
print("Данные успешно записаны в output.txt")
|
Loading…
Reference in New Issue
Block a user