Compare commits

...
2 Commits
Author SHA1 Message Date
stud178858 f213c3f6f1 Added data.txt, script.py 2025-03-03 14:35:43 +03:00
stud178858 6bbc534d6a Проект создан: .venv, .gitignore, .README.md 2025-03-03 14:03:20 +03:00
4 changed files with 17 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
.venv/
output.txt
+3
View File
@@ -0,0 +1,3 @@
Печенье 2
Варенье 4
+6
View File
@@ -0,0 +1,6 @@
numpy==2.2.3
pandas==2.2.3
python-dateutil==2.9.0.post0
pytz==2025.1
six==1.17.0
tzdata==2025.1
+5
View File
@@ -0,0 +1,5 @@
data = open("data.txt", 'r')
text = data.read().upper()
print(text)
output = open("output.txt", 'w')
output.write(text)