设有列表Ist_odd=[1,3,5,7,9]和列表Ist_even=[2,4,6,8,10]。试编写python程序,将两个列表合并成一个新的列表,并将新列表按照元素的大小降序排列。
时间: 2023-11-06 19:04:07 浏览: 117
odd_or_even.rar_C语言_Even_arrangeb5x_odd
可以使用extend()方法将Ist_even中的元素添加到Ist_odd中,然后使用sorted()函数将新列表进行降序排列。
代码如下:
```
Ist_odd=[1,3,5,7,9]
Ist_even=[2,4,6,8,10]
Ist_odd.extend(Ist_even) # 将Ist_even中的元素添加到Ist_odd中
new_list = sorted(Ist_odd, reverse=True) # 对新列表进行降序排列
print(new_list)
```
输出结果为:`[10, 9, 8, 7, 6, 5, 4, 3, 2, 1]`
阅读全文