Python - Why is the first enumerated value (0) not in the list? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Python - Why is the first enumerated value (0) not in the list?

zzz = [1,2,3,4] for i in enumerate(zzz): if i[0] in zzz: print(i[0]) Outputs: 1 2 3 In the for loop, item i is: (0, 1) <--- why is the 0 for i[0] NOT in zzz? (1, 2) (2, 3) (3, 4) Why is " if i[0] in zzz " true only when i[0] is 1, 2, 3 and NOT when i[0] is 0?

10th Oct 2020, 7:26 PM
Solus
Solus - avatar
1 Answer
+ 1
indexes are: 0,1,2,3 values are 1,2,3,4. the indexes contained in list zzz are 1,2,3. zero is not incuded
3rd May 2023, 6:34 PM
tamaslud
tamaslud - avatar