142k views
5 votes
What does this snippet of code do? birds = ["robin", "finch", "grackle", "crow", "wren"] for i in birds: print(i) It counts the number of birds in the list. It prints the index and then each bird name. It prints each bird name on a separate line. It prints each index number on a separate line.

User Mrusinak
by
3.9k points

2 Answers

2 votes

Answer: it prints the index and then each bird name

Explanation: got it right on edge,hope this helps :)

User Basilio German
by
4.7k points
1 vote

Answer:

It print the index and then each bird name

Step-by-step explanation:

User Howard Hee
by
4.4k points