Write a Python program that accepts a comma separated sequence of words as input and prints the unique words in sorted form (alphanumerically).
- برمجة
- برمجة بايثون
- 2021-04-15
- salsabeelalhams99111801528
الأجوبة
items = input("Input comma separated sequence of words")
words = [word for word in items.split(",")]
print(",".join(sorted(list(set(words)))))أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال