Write a Python program that accepts a comma-separated sequence of words as input and prints the unique words in sorted form (alphanumerically). Here is a sample interaction:
C:\ProgramData\Anaconda3 C:\Users\vme19eee\Dropbox\Teaching\Python\Fall 2019\Code\Homework\Homework Three\scripts>python F19H304.py
Enter a sequence of words separated by commas: hello,how,areyou,you,look,well
['are', 'hello', 'how', 'look', 'well', 'you']