我如何预先一个整数到一个列表的开始?

[1, 2, 3]  ⟶  [42, 1, 2, 3]

当前回答

>>> x = 42
>>> xs = [1, 2, 3]
>>> [x] + xs
[42, 1, 2, 3]

注意:不要使用list作为变量名。

其他回答

可以通过简单地将列表添加在一起来生成新的列表。

list1 = ['value1','value2','value3']
list2 = ['value0']
newlist=list2+list1
print(newlist)

另一种方法是,

list[0:0] = [a]

选择:

>>> from collections import deque

>>> my_list = deque()
>>> my_list.append(1)       # append right
>>> my_list.append(2)       # append right
>>> my_list.append(3)       # append right
>>> my_list.appendleft(100) # append left
>>> my_list

deque([100, 1, 2, 3])

>>> my_list[0]

100

【注意】:

collections.deque在循环中比Python纯列表更快。

list_1.insert(0,ur_data)

确保ur_data是字符串类型 所以如果你有数据= int(5)转换为ur_data = str(数据)

你可以使用Unpack列表:

a = 5 li = [1,2,3] li = [a, *li] => [5, 1, 2, 3]