List集合中把其中一个元素 调整到集合的第一位
时间: 2023-12-10 22:39:58 浏览: 70
ArrayList删除集合中某一属性相同的元素方法(推荐)
你可以使用 List 的 `remove()` 和 `insert()` 方法来实现将指定元素移动到第一位:
```python
my_list = [1, 2, 3, 4, 5]
element_to_move = 3
my_list.remove(element_to_move) # 从列表中删除该元素
my_list.insert(0, element_to_move) # 将该元素插入到第一位
print(my_list) # 输出 [3, 1, 2, 4, 5]
```
在这个例子中,我们首先使用 `remove()` 方法将指定元素从列表中删除,然后使用 `insert()` 方法将其插入到列表的第一位。最后,我们打印出调整后的列表。
阅读全文