为了账号安全,请及时绑定邮箱和手机立即绑定

数组:以负索引插入

数组:以负索引插入

POPMUISE 2021-09-25 22:03:19
-1 没有在数组的最后一个索引处插入“hello”如果我有一个数组,x:>>> x = [1, 2, 3] then>>> x.insert(-1, "hello")>>> print(x)[1, 2, 'hello', 3]为什么 -1 不在数组的最后一个索引处插入“hello”?由于 -1 索引指的是列表的最后一项,所以我期待:[1, 2, 3, “你好”]
查看完整描述

3 回答

?
GCT1015

TA贡献1827条经验 获得超4个赞

运行help方法通常会给你这些问题的答案:


help(list.insert)

#Help on method_descriptor:

#

#insert(self, index, object, /)

#    Insert object before index.


查看完整回答
反对 回复 2021-09-25
  • 3 回答
  • 0 关注
  • 167 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信