Добавлены текстовики

This commit is contained in:
Егор Петухов 2025-03-03 14:35:29 +03:00
parent e1afad4abb
commit 5a360b7cd3
3 changed files with 8 additions and 1 deletions

4
.gitignore vendored
View File

@ -1 +1,3 @@
.venv/
.venv/
output.txt
data.txt

BIN
requirements.txt Normal file

Binary file not shown.

5
script.py Normal file
View File

@ -0,0 +1,5 @@
f = open("data.txt","r")
text = f.read().upper()
print(text)
output = open("output.txt", "w")
output.write(text)