For-each loops in Python are written as follows:
for loop_variable in collection: body
for loop_variable in collection:
body
Fill in the placeholders so that the actual outputs match the expected outputs.