We can check and see if a value is IN a list and then use our conditional to help execute code!
We can also check to see if something is NOT in a list by using the keyword not
Of course it does!!! This will check to see if numbers ARE or ARE NOT in a given list! It's pretty cool!
This will run through a list and perform any operation you need to! We can combine our list looping AND Conditionals! AWESOME!
We can use the word break inside of a loop to immediately exit the loop!
The minute we see break, we exit the current loop we're in!!
The break statement is useful when you want to stop a loop early, either because you've found what you're looking for or because some condition has been met.