13 lines
275 B
Python
13 lines
275 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
with open('message.txt', 'r') as f:
|
||
|
content = f.read().strip()
|
||
|
|
||
|
def chunks(l, n):
|
||
|
for i in range(0, len(l), n):
|
||
|
yield l[i:i + n]
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
for x, y, z in chunks(content, 3):
|
||
|
print(f'{z}{x}{y}', end='')
|
||
|
print()
|