From 9eec0fc121b2acc27739a84120cb43fcc6625b7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?luis=20Mart=C3=ADnez?= Date: Wed, 8 Jul 2020 13:16:50 -0500 Subject: [PATCH] Success --- src/main.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 3f1ef43..8abcbf4 100644 --- a/src/main.py +++ b/src/main.py @@ -1,8 +1,14 @@ # Resolve the problem!! - +import re def run(): # Start coding here + msg = '' + + with open('./encoded.txt',mode='r',encoding='utf-8') as f: + msg=''.join(re.findall('[a-z]',f.read())) + + print('El mensaje oculto es: ',msg) if __name__ == '__main__':