编写一个程序,接受一系列空格分隔的单词作为输入,并在删除所有重复的单词并按字母数字排序后打印这些单词。
时间: 2024-05-14 20:16:43 浏览: 129
Python 实现一行输入多个数字(用空格隔开)
5星 · 资源好评率100%
好的,以下是解决方案:
```python
words = input().split()
# 去除重复单词
unique_words = list(set(words))
# 按字母数字排序
unique_words.sort()
# 打印结果
print(" ".join(unique_words))
```
输入样例:
```
hello world apple pie hello 123
```
输出结果:
```
123 apple hello pie world
```
阅读全文