__init__()The methodused toinitializeobjects.OverridingThis refers toredefining aparent classmethod in thechild class.InheritanceThis allows achild class touse themethods andattributes of aparent class.ObjectA specificinstanceof a class.defUsed todefine afunction.FunctionA reusableblock ofcode toperform atask.selfThis keywordrefers to thecurrent objectinside aclass.ForLoopThis loopiteratesover asequence.EncapsulationThis OOPprinciple hidesinternal detailsand shows onlynecessaryparts.Constructorclass A: def__init__(self):print("Hello")— What is__init__()?WhileLoopThis loopruns whena conditionis true.Functiondef greet():print("Hi")greet() —What structureis this?Methodclass Dog:def bark(self):print("Woof")— What isbark()?ifA keywordused forconditionalstatements.Privatevariablevariable withtwounderscoresis consideredthis.ClassA blueprintforcreatingobjects.__init__()The methodused toinitializeobjects.OverridingThis refers toredefining aparent classmethod in thechild class.InheritanceThis allows achild class touse themethods andattributes of aparent class.ObjectA specificinstanceof a class.defUsed todefine afunction.FunctionA reusableblock ofcode toperform atask.selfThis keywordrefers to thecurrent objectinside aclass.ForLoopThis loopiteratesover asequence.EncapsulationThis OOPprinciple hidesinternal detailsand shows onlynecessaryparts.Constructorclass A: def__init__(self):print("Hello")— What is__init__()?WhileLoopThis loopruns whena conditionis true.Functiondef greet():print("Hi")greet() —What structureis this?Methodclass Dog:def bark(self):print("Woof")— What isbark()?ifA keywordused forconditionalstatements.Privatevariablevariable withtwounderscoresis consideredthis.ClassA blueprintforcreatingobjects.

Python Django Bingo - Call List

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