Upload your solution as a .py file. Write a Python program (…
Upload your solution as a .py file. Write a Python program (no need to write any function) that will read a bunch (how many is not specified) of letters each separated by a space from the previous one. Your program will assign these letters to a list. The way to do so is illustrated in the following code sample that you will have to adapt to your needs: letters = . You will then display that new version of the list of letters. Finally, your program will display which of the letters in the new list is the closest to the beginning of the alphabet and which one is closest to the end. HINT – you must NOT sort the list to do this. You can simply use functions that we already studied when learning about lists. Sample program execution (user input is in red): Enter a bunch of letters separated by spaces: r a d a r You typed: Your input contains the letters: The closest letter to the start of the alphabet is: aThe closest letter to the end of the alphabet is: r Grading Rubric: Reading the values into a list correctly and according to the above example (1 point) Keeping only one copy of each letter in the list (1 point) Displaying the letters that are closest to the start / end of the alphabet (1 point)