From e0050a48bfd4d8307bced0a3e3f351e83624cc28 Mon Sep 17 00:00:00 2001 From: "vh_cm_@hotmail.com" Date: Tue, 11 Aug 2020 03:02:47 -0500 Subject: [PATCH] Python 3 --- Challenge_3.PY | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Challenge_3.PY diff --git a/Challenge_3.PY b/Challenge_3.PY new file mode 100644 index 0000000..46464a4 --- /dev/null +++ b/Challenge_3.PY @@ -0,0 +1,11 @@ +# Resolve the problem!! +import re + +def run(): + # Start coding here + f = open('encoded.txt', 'r', encoding='utf-8').read() + x = re.findall("[\127-\255]", f) + print(x) + +if __name__ == '__main__': + run() \ No newline at end of file