One of the first things I do to learn a new programming language is to write a program that analyzes a source text and then uses a Markov-chain analysis to generate random gibberish that's somehow written in the style of the source text. I think I've done this in six or seven languages now.
Why I love Python: It took me about two hours to get it working. And that two hours included building a little IDE in C# that executes the program using IronPython, because I didn't realize I could just use IDLE or grab Eclipse.
It's actually not a bad program, for one written by someone who doesn't know Python (it's importing clr so that it can use the CLR's Random class; making this work in vanilla Python is an exercise for the reader):
import sys
import clr
from System import Random
r = Random()
def buildmap(text, size):
map = { }
for i in range(0, len(text)):
if i + size < len(text):
word = text[i:i + size]
next = text[i + size]
else:
overlap = (i + size + 1) - len(text)
word = text[i:] + text[:overlap - 1]
next = text[overlap - 1]
if not map.has_key(word):
map[word] = [ ]
map[word].append(next)
return map
def producetext(map, length):
word = map.keys()[0]
output = [ ]
for ch in word:
output.append(ch)
count = 0
while True:
count = count + 1
if count > length:
break
char = map[word][r.Next(len(map[word]))]
output.append(char)
word = word[1:len(word)] + char
return "".join(output)
text = sys.stdin.read()
map = buildmap(text, 6)
print producetext(map, 1500)
Not bad, though not as Pythonic as it could be. Here's some sample output. Determining what the input was is another exercise for the reader:
Open your hat get your hat get your hair
Your face like a Cuban plane
My love is like ribbons
And the swamplands
From the hillside struggling to the casements
Rip the Florida coast to the searchlights up
Turn the helicopter passes
We're pretty sure they're here will walk again
Put on the wind stopping
Feel the way down with a broadsword