Compare commits

..

4 Commits

4 changed files with 10 additions and 2 deletions

3
.gitignore vendored Normal file
View File

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

View File

@ -1,2 +1,2 @@
Никита
Петухов Егор Алексеевич
Лямин Никита Викторович
Петухов Егор Алексеевич

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)