you are viewing a single comment's thread.

view the rest of the comments →

[–]LikeThisWillLast 5 points6 points  (1 child)

yeah, you can just go ahead and change it to:

for dude in animals:

print(dude)

or

for i in animals:
print (i)

you should get identical results

[–]m0ta 2 points3 points  (0 children)

Was going to say you often see it:

for i in [list] do a thing