foreach-loops
Learn how to use foreach-loops to loop over list-like structures.
We'll cover the following...
Python for-loops loop over sequences; a list is one type of sequence. This can be very convenient, and Java 8 introduced a similar capability, called a ...