Python 101 - The for Loop
There are many times when you are writing code that you will need to process each object in a collection. In order to do that you will iterate over that collection, which means getting each object from that collection one at a time. Collections of objects include strings such as “Hello, world”, lists like [1, 2, 3], and even files. The process of iterat…


