Python foreach equivalent

Bill picture Bill · Oct 31, 2016 · Viewed 318.3k times · Source

I am diving into Python and I have a question about foreach iteration. I am new to Python and I have some experience in C#. So I am wondering, if there is some equivalent function in Python for iteration all over all items in my collection, e.g.

pets = ['cat', 'dog', 'fish']
marks = [ 5, 4, 3, 2, 1]

or something like this.

Answer

Hannu picture Hannu · Oct 31, 2016

Sure. A for loop.

for f in pets:
    print f