what kind of changes are you looking for. lets say you have the string 'the dog went home' , how would you want that changed? Changed is a vague term.
you may want to use random.choice it will make a random choice of an element.
here is an example
[php]
choices = ('a','b','c','d','e','f','g','h','i','j','k')
random.choice(choices)
[/php]
this will choose one of the elments randomly.