Write a function calledmissing_lettersthat takes a string parameter and returns a new string with all the letters of the alphabet that are not in the… Write a function called missing_letters that takes a string parameter and returns a new string with all the letters of the alphabet that are not in the argument string. The letters in the returned string should be in alphabetical order. Your...