view bin/distort @ 11953:dcbbe7c31186 draft

<kmc> addquote <LKoen> kmc: it\'s 3am and instead of going to bed I just spent a looot of time reading a long article about circadian rythms and melatonin
author HackEso <hackeso@esolangs.org>
date Thu, 26 Sep 2019 01:03:26 +0000
parents 4bf8e3c4e356
children 3544b44147db
line wrap: on
line source

#!/usr/bin/env python
import sys
N = 459
name = sys.argv[1] if len(sys.argv) > 1 else "/dev/stdin"
with open(name, "r") as f:
  data = ' \\ '.join(f.read().splitlines())
s = len(data)
mw = len(str(2*s/N))-1
mw += s > ((N-2)*9-18*mw+1)*((10**mw-1)/9)-mw
p=0
i=1
while (p<s):
  lw = N-mw-2-len(`i`)
  print data[p:p+lw]
  i+=1
  p+=lw