python把列表切片的方法,方法内的切片列表(Python 3)

I have a method like the following:

def slice_list(my_list, slice_point):

my_list = my_list[:slice_point]

print("Inside method: ", my_list)

return

I have a test for it like the following:

if __name__ == "__main__":

my_list = [1,2,3,4,5]

slice_point = 3

slice_list(my_list, slice_point)

print("Outside method: ", my_list)

The output I get is not what I expected for, in the sense that the list is not ultimately edited

>>>Inside method: [1, 2, 3]

>>>Outside method: [1, 2, 3, 4, 5]

But when I do an append to the list, it does edit the list for good, as this example shows:

def append_to_list(my_list, element):

my_list.append(element)

print("Inside method: ", my_list)

return

if __name__ == "__main__":

my_list = [1,2,3,4,5]

append_to_list(my_list, "new element")

print("Outside method: ", my_list)

Which gives the following output:

>>>Inside method: [1, 2, 3, 4, 5, 'new element']

>>>Outside method: [1, 2, 3, 4, 5, 'new element']

Why does the slice not change the list for good?

解决方案

Try this instead:

my_list[:] = my_list[:slice_point]

Your old method just points the name my_list at a new object, i.e. at the copy returned by the slice.

The suggestion I've proposed above, however, modifies the object which my_list originally pointed at without rebinding that name.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值