Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > cd14cddf3b3ceaf1193157472227757a > files > 585

parrot-doc-1.6.0-1mdv2010.0.i586.rpm

#! python

import string

big = 0
astring = "just another pyth hacker"

for i in range(100000):
    big = big + 1
    str = list(astring)
    f = str.pop(0)
    str.append(f)
    astring = string.join(str,"")

print big
print astring