python输出列表中的第二个元素_python – 替换列表中的每个第二个元素

我有一个二维列表:

[[5, 80, 2, 57, 5, 97], [2, 78, 2, 56, 6, 62], [5, 34, 3, 54, 6, 5, 2, 58, 5, 61, 5, 16]]

我需要将每个第二个元素更改为0,从第一个元素开始.所以看起来应该是这样的:

[[0, 80, 0, 57, 0, 97], [0, 78, 0, 56, 0, 62], [0, 34, 0, 54, 0, 5, 0, 58, 0, 61, 0, 16]]

我使用的算法:

for i in tempL:

for j, item in enumerate(i):

if i.index(item) % 2 == 0:

print('change, index:'),

print(i.index(item))

i[j] = 0

else:

print('not change, index:'),

print(i.index(item))

但我得到的是:

change, index: 0

not change, index: 1

change, index: 2

not change, index: 3

change, index: 4

not change, index: 5

change, index: 0

not change, index: 1

change, index: 2

not change, index: 3

change, index: 4

not change, index: 5

change, ind

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值