the-honk/python/pythonchallenge.com/6 - Channel.py
2024-10-09 18:02:48 +01:00

17 lines
No EOL
401 B
Python

import zipfile
import re
f = zipfile.ZipFile('channel.zip')
num = '90052'
comments = []
while True:
content = f.read('{0}.txt'.format(num)).decode('utf-8')
comments.append(f.getinfo('{0}.txt'.format(num)).comment.decode('utf-8'))
print(content)
match = re.search('Next nothing is (\d+)', content)
if match == None:
break
num = match.group(1)
print(''.join(comments))