diff --git a/src/main.py b/src/main.py index 3f1ef43..52de300 100644 --- a/src/main.py +++ b/src/main.py @@ -1,8 +1,14 @@ # Resolve the problem!! +import re + +FILE_NAME = 'encoded.txt' def run(): - # Start coding here + with open(FILE_NAME, encoding = 'utf-8') as input_file: + contents = input_file.read() + message = ''.join(re.findall(r'[a-z]', contents)) + print(message) if __name__ == '__main__':