(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
This loop iterates over a sequence.
For Loop
def greet(): print("Hi") greet() — What structure is this?
Function
A keyword used for conditional statements.
if
class Dog: def bark(self): print("Woof") — What is bark()?
Method
variable with two underscores is considered this.
Private variable
This allows a child class to use the methods and attributes of a parent class.
Inheritance
This keyword refers to the current object inside a class.
self
The method used to initialize objects.
__init__()
A blueprint for creating objects.
Class
This refers to redefining a parent class method in the child class.
Overriding
This loop runs when a condition is true.
While Loop
class A: def __init__(self): print("Hello") — What is __init__()?
Constructor
A specific instance of a class.
Object
This OOP principle hides internal details and shows only necessary parts.
Encapsulation
Used to define a function.
def
A reusable block of code to perform a task.
Function