Python Equivalent for dd & fold

Michiel Overtoom motoom at xs4all.nl
Wed Jul 15 12:47:13 EDT 2009


seldan24 wrote:

> what can I use as the equivalent for the Unix 'fold' command?

def fold(s,len):
     while s:
         print s[:len]
         s=s[len:]

s="A very long string indeed. Really that long? Indeed."
fold(s,10)

Output:

A very lon
g string i
ndeed. Rea
lly that l
ong? Indee
d.

Greetings,

-- 
"The ability of the OSS process to collect and harness
the collective IQ of thousands of individuals across
the Internet is simply amazing." - Vinod Valloppillil
http://www.catb.org/~esr/halloween/halloween4.html



More information about the Python-list mailing list