A "list" of pieces of information.
What is a list?
Repeat the following X number of times.
What does repeat X times do?
A piece of data that is used to store information and can be changed.
What is a variable?
Do the following when the code starts.
What does when play clicked do?
How do you find the length of a list?
If the user presses a button, do the following.
What does when key pressed do?
Use append/join/etc.
How do you add to a list?
An operation that checks if something is true, then does something based on whether it is True or False.
What is an if statement/loop?
List 0:3.
How do can you get the first 3 items of a list?
An operation that ends a loop
What is a break/stop statement?
An immutable list (a list that cannot be changed in any way).
What is a tuple?
As long as this condition is True, repeat.
What does a while true loop do?