Create a Python program that:
- Allows the user to enter a phrase or sentence.
- The program should then take the phrase or sentence entered
- Separate out the individual words entered
- Each individual word should then be added to a list
- After all of the words have been place in a list
- Sort the contents of the list
- Display the contents of the sorted list with each individualword displayed on a separate line
- Display a message to the user indicating when all of the itemsin the list have been displayed
The program should:
- Use variables with meaningful names
- Display easily understood prompts when collecting userinput
- Have appropriate comments indicating what each part of theprogram is doing
- Have a comment area at the beginning of the program identifyingthe author of the program and the class it was created for
Save the program as a Python module, and submit the programthrough this assignment.