Many of the terms you encounter in learning to code are everyday words that you already understand. Some terms, though, are brand new or have special meaning to computer programmers. This glossary defines several of the newer terms you’ll come across in the book, as well as familiar words that take on new meanings in the world of coding.
A set of steps for performing a task, like a recipe.
The illusion of motion created when similar images are displayed quickly one after the other, as in a cartoon.
Short for application, a computer program that does something useful (or fun!).
To add something to the end; for example, adding letters onto the end of a string or adding elements to the end of a list or array.
A value passed to a function; in the statementrange(10)
,10
is an argument.
An ordered list of values or objects, usually of the same type, accessed by their index, or position in the list.
Setting the value of a variable, as inx = 5
, which assigns the value5
to the variablex
.
A group of programming statements.
A value or expression that can be either true or false.
A template defining the functions and values to be contained in any objects of that type.
Statements or instructions written by a programmer in a language that computers can understand.
Checking to see if two virtual objects are touching, or colliding, on the screen, like the ball and paddle in Pong.
To combine two strings of text into a single string.
A statement that allows the computer to test a value and perform different actions depending on the outcome of that test.
A named value in a computer program that stays the same, likemath.pi
(3.1415...).
A statement or group of statements that tell a computer what a variable or function name means.
A single item in a list or array.
An activity that a computer can detect, like a mouse click, value change, keypress, timer tick, and so on. Statements or functions that respond to events are called event handlers or event listeners.
Any valid set of values, variables, operators, and functions that produces a value or result.
A collection of data or information stored by a computer on some kind of storage device, like a hard disk, DVD, or USB drive.
for
loopA programming statement that allows a block of code to be repeated for a given range of values.
A single image in a moving sequence for animation, video, or computer graphics.
The rate or speed that images are drawn on the screen in an animation, video game, or movie.
A named, reusable set of programming statements to perform a specific task.
To bring reusable code or data into a program from another program or module.
An element’s position in a list or array.
To give a variable or object its first, or initial, value.
Any data or information entered into a computer; input can come from a keyboard, mouse, microphone, digital camera, or any other input device.
Repeatedly making small changes or improvements to a program and saving it as a new version, like Game1, Game2, and so on.
A special, reserved word that means something in a particular programming language.
A container for an ordered group of values or objects.
A set of instructions that is repeated until a condition is reached.
A file or set of files with related variables, functions, and classes that can be reused in other programs.
A loop inside another loop.
A variable containing information about a single instance of a class, such as a single sprite from theSprite
class.
A symbol or set of symbols that represents an action or comparison and returns a result, such as+
,-
,*
,//
,<
,>
,==
, and so on.
An input variable to a function, specified in the function’s definition.
Short for picture element, the small dots of color that make up images on a computer screen.
A set of instructions written in a language computers can understand.
A value in a sequence that seems to be random or unpredictable, and is random enough to simulate rolling dice or flipping coins.
An unpredictable sequence of numbers evenly distributed over a certain range.
An ordered set of values between a known start and end value; in Python, therange
function returns a sequence of values, such as0
through10
.
Short for red-green-blue color, a way of representing colors by the amount of red, green, and blue light that can be mixed to re-create each color.
A text-based command line program that reads commands from the user and runs them; IDLE is Python’s shell.
To put elements of a list or array in a certain order, such as alphabetical order.
A sequence of characters, which can include letters, numbers, symbols, punctuation, and spacing.
The spelling and grammar rules of a programming language.
In graphics, the ability to see through portions of an image.
In a computer program, a named value that can change.
while
loopA programming statement that allows a block of code to be repeated as long as a condition is true.