Mercurial > repo
view bin/distort @ 12523:67a2e5342dad draft default tip
<b_jonas> learn The password of the month is outside the scope of this wisdom entry.
author | HackEso <hackeso@esolangs.org> |
---|---|
date | Tue, 01 Apr 2025 08:17:53 +0100 (5 days ago) |
parents | 3544b44147db |
children |
line wrap: on
line source
#!/usr/bin/env python import sys N = 447 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