diff --git a/.gitignore b/.gitignore index f48d0e5..def4cc9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ .venv/ -output.txt diff --git a/data.txt b/data.txt deleted file mode 100644 index 98308c6..0000000 --- a/data.txt +++ /dev/null @@ -1,3 +0,0 @@ -Печенье 2 -Варенье 4 - \ No newline at end of file diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index de6c89b..0000000 --- a/requirements.txt +++ /dev/null @@ -1,6 +0,0 @@ -numpy==2.2.3 -pandas==2.2.3 -python-dateutil==2.9.0.post0 -pytz==2025.1 -six==1.17.0 -tzdata==2025.1 diff --git a/script.py b/script.py deleted file mode 100644 index 9582e45..0000000 --- a/script.py +++ /dev/null @@ -1,5 +0,0 @@ -data = open("data.txt", 'r') -text = data.read().upper() -print(text) -output = open("output.txt", 'w') -output.write(text) \ No newline at end of file