(Print) Use this randomly generated list as your call list when playing the game. There is no need to say the BINGO column name. Place some kind of mark (like an X, a checkmark, a dot, tally mark, etc) on each cell as you announce it, to keep track. You can also cut out each item, place them in a bag and pull words from the bag.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
The actual value passed to the function when it is called.
Argument
The process of converting the value of one data type to another
type conversion
A whole number, positive or negative, without a decimal point.
Integer (int)
A description of the parts of a program where a particular variable can be accessed and modified.
scope
A sequence of characters (letters, numbers, symbols) enclosed in quotes.
string
An ordered, collection of items. In Python, they are defined by square brackets [].
List
The process of encoding a message or information in such a way that only authorized parties can access it.
Encryption
A symbol in code that tells a computer to perform a specific math operation, such as addition, subtraction, multiplication, or division. (+ – × / ).
Arithmetic operator
Boolean (bool)
A logical value that can only be True or False.
A named, reusable block of code designed to perform a specific task.
function
To find and fix errors
Debugging
A finite set of well-defined, ordered steps for solving a problem or achieving an end goal.
Algorithm
A mathematical operator that performs division, but returns the remainder.
Modulo or Modulus
%
Stored data that is only used within a small scope of a project and cannot be used by other parts of the program.
local variable
Stored data that may be used by any part of the program.
global variable
A value that is passed into a function when it is called or invoked.
Argument
The process of simplifying complex reality by hiding unnecessary details and only presenting the essential information.
Abstraction
A control structure that causes a block of code to be executed repeatedly.
Loop or Iteration
The process of converting encrypted data back into its original, readable form.
Decryption
A programming statement that evaluates a true/false Boolean expression to determine the next steps in a program.
conditional statement
A representation of a logical statement that is used to examine the relationship between two values and determine whether the statement is true or false.
Logical operator
A number system that uses only two symbols, typically 0 and 1. It is the language of computers.
Binary
A python function that prompts and retrieves text from the user
input()
A set of rules and protocols that allows two separate software applications or systems to communicate with each other.
Application Programming Interfaces (API)
A number containing a decimal point, used to represent real numbers
Float (float)
A piece of hardware used to provide data and control signals to an information processing system (e.g., keyboard, mouse).
Input Device
A piece of hardware that receives processed data from the computer (e.g., monitor, printer).
Output Device
Joining 2 strings together
Concatenation
To direct a program to execute or reference a certain procedure.
call a procedure or function