0
[Solved] [Python] Problems with for loops
I tried to print all items of the lists but it outputs only part of them https://code.sololearn.com/cwJdw6LaiE3J/?ref=app
2 Respostas
+ 5
for c in interable
c is the item, not the index.
Try print(c) and compare
+ 2
It works now. Thanks!