3 Commits
3 changed files with 8 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
.venv/
output.txt
data.txt
BIN
View File
Binary file not shown.
+5
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)