In this chapter, you will write a program called scrambler.py that will scramble each word of the text given as an argument. The scrambling should only work on words with four characters or more, and it should only scramble the letters in the middle of the word, leaving the first and last characters unchanged. The program should take an -s or --seed option (an int with default None) to pass to random.seed().
$ ./scrambler.py --seed 1 "foobar bazquux" faobor buuzaqx
$ cat ../inputs/spiders.txt Don't worry, spiders, I keep house casually. $ ./scrambler.py ../inputs/spiders.txt D'not wrory, sdireps, I keep hsuoe csalluay.