python合并两个序列,去除其中重复元素,得到一个严格单调递增序列。
时间: 2023-06-10 11:02:43 浏览: 266
python实现合并两个数组的方法
5星 · 资源好评率100%
可以使用set和sorted来实现:
```python
list1 = [1, 3, 5, 7]
list2 = [2, 3, 4, 7, 8]
result = sorted(set(list1 + list2))
print(result)
```
输出结果为:
```
[1, 2, 3, 4, 5, 7, 8]
```
这样可以得到一个严格单调递增的序列,其中重复的元素被去除了。
阅读全文