这个参考答案里的num变量是怎么参与到那个 list里去的

来源:5-2 Python按顺序访问list

weixin_慕少4320587

2021-07-03 19:35

num = 0

L = ['Alice', 66, 'Bob', True, 'False', 100]

for item in L:

    num = num + 1

    if num % 2 != 0:

        continue

    print(item)


写回答 关注

1回答

  • 聪大大3
    2021-07-04 09:49:00

    num并不是参与到list里面的,他只是用来判断是不是偶数位置的一个变量,是参与到循环里面的

Python3 入门教程(新版)

python3入门教程,让你快速入门并能编写简单的Python程序

154167 学习 · 1075 问题

查看课程

相似问题