diff --git a/.gitignore b/.gitignore index 0cafc1c..b06c020 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -.venv/ \ No newline at end of file +.venv/ +output.txt +data.txt \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..194e025 Binary files /dev/null and b/requirements.txt differ diff --git a/script.py b/script.py new file mode 100644 index 0000000..8b894d4 --- /dev/null +++ b/script.py @@ -0,0 +1,5 @@ +f = open("data.txt","r") +text = f.read().upper() +print(text) +output = open("output.txt", "w") +output.write(text) \ No newline at end of file