From e214c0dbca82165405b3e46b531468b1722c0977 Mon Sep 17 00:00:00 2001 From: Joshua Yang <85262856+joshuayanggithub@users.noreply.github.com> Date: Thu, 4 Aug 2022 17:17:26 -0700 Subject: [PATCH] Delete answerformatter.py --- answerformatter.py | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 answerformatter.py diff --git a/answerformatter.py b/answerformatter.py deleted file mode 100644 index 1a042cd..0000000 --- a/answerformatter.py +++ /dev/null @@ -1,8 +0,0 @@ -with open("unformatted.txt") as f: - lines = f.read() - lines = lines.replace('\n', ' ') - for word in lines.split(" "): - if (len(word) > 2): - lines = lines.replace(word,"") - print(lines) - \ No newline at end of file