暂无 |

List-函数-insert

insert 方法比较像 append,它允许你在列表中的任何位置插入一个新的项目,而不是只在最后一个位置
words = ["Python", "fun"]
index = 1
words.insert(index, "is")
print(words)


结果:
>>>
['Python', 'is', 'fun']
>>>

0

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论