python For this part you will be writing a series of functions that can be used
ID: 3936918 • Letter: P
Question
python
For this part you will be writing a series of functions that can be used as part of a "secret message encoder" program. Here are the functions you will be writing as well as some sample code that you use use to test your work. # function : addletters # input: a word to scramble (String) and a number of letters (integer) # processing: adds a number of random letters (A-Z; a-z) after each letter - in the supplied word. for example, if word-"cat" and num-1 we could generate any of the following: cZaQtR cWaRts cEaett if word-"cat" and num-2 we could generate any of the following: cRtaHFtui cnnaNYtjn czAaAitym # output: returns the newly generated wo rd def add_letters(word, num): # function code goes here!