Suppose you are given a list of words, wordlist. Write Python code that will write one line for each word, repeating that word twice, put star at the beginning of string if the length of name is even number. For example if worldList is ['Jose', 'Sue', 'Michael'], then your code would print (Note: wordList is the variable containing those words) *Jose Jose ( note: there is leading star because Jose has 4 characters which is even number ) Sue Sue ( note: no star, only two repeated names ) Michael Michael ( note: Michael has 7 characters, so there is no leading star )