📜  python 按索引弹出一个元素 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:02.141000             🧑  作者: Mango

代码示例1
a = ['a', 'b', 'c', 'd']
a.pop(1)

# now a is ['a', 'c', 'd']