We stream today at 1pm, Irish time, who’s with us!
Feedback can be sent to [email protected], dropped to our anonymous survey, or posted on our discussion board.
The End of Logical Operators
We’ll show you the true value of logical operators today — a BuzzFeed-style quiz!

If that doesn’t bring home the usefulness of logical operators; our &&’s, ||’s, and !’s, I don’t know what will.
On to While Loops
Now, we’ve covered loops before, you might remember the for .. in ...
syntax.

That has worked really well for us throughout this course, but today we’re going to learn another way to repeat our code: while
loops.
With while loops we’ll keep performing the code in our block until a certain condition is false
.

It’s a great bridge connecting two of the different coding tools we’ve learned: loops and conditions.
Now that we’ve had a bit of practice with both, we’ll see ways in which we might want to use this new tool.
Cicero