break –Exits aloop early.try/exceptblock – Forhandlingerrors.Listcomprehension– E.g., [x for xin range(10)]f-string – Forformattedstrings, e.g.,f"Hello,{name}"range() –E.g.,range(10) togeneratesequences.Arithmeticoperators– Such as+, -, *, /.continue –Skips to thenext iterationof a loop.input() –For gettinguser input.while loop –Repeats aslong as acondition istrue.from ...import ... –E.g., frommath importpireturn – Exitsa function andoptionallyreturns avalue.Dictionarycreation –E.g., my_dict= {"key":"value"}for loop –Forexample: fori in range(5):Variableassignment– E.g., x =10else – Thefallbackbranch forconditionals.def –Used todefine afunction.lambda –Anonymousfunctions,e.g., lambdax: x * 2Comparisonoperators –Such as ==,!=, <, >.elif – Usedfor additionalconditionalchecks.Tuplecreation –E.g.,my_tuple =(1, 2, 3)import –Importingmodules,e.g., importmathif – Thebasicconditionalstatement.type() – Tocheck thedata type,e.g., type(x)as – Foraliasingmodules,e.g., importnumpy as nplen() – To getthe length ofa list, string,etc.Docstring – Astring literal fordocumentation,e.g.Logicaloperators –Such asand, or, not.List creation– E.g.,my_list = [1,2, 3]print("Hello,world!") –The classicoutputcommand.Set creation– E.g.,my_set ={1, 2, 3}break –Exits aloop early.try/exceptblock – Forhandlingerrors.Listcomprehension– E.g., [x for xin range(10)]f-string – Forformattedstrings, e.g.,f"Hello,{name}"range() –E.g.,range(10) togeneratesequences.Arithmeticoperators– Such as+, -, *, /.continue –Skips to thenext iterationof a loop.input() –For gettinguser input.while loop –Repeats aslong as acondition istrue.from ...import ... –E.g., frommath importpireturn – Exitsa function andoptionallyreturns avalue.Dictionarycreation –E.g., my_dict= {"key":"value"}for loop –Forexample: fori in range(5):Variableassignment– E.g., x =10else – Thefallbackbranch forconditionals.def –Used todefine afunction.lambda –Anonymousfunctions,e.g., lambdax: x * 2Comparisonoperators –Such as ==,!=, <, >.elif – Usedfor additionalconditionalchecks.Tuplecreation –E.g.,my_tuple =(1, 2, 3)import –Importingmodules,e.g., importmathif – Thebasicconditionalstatement.type() – Tocheck thedata type,e.g., type(x)as – Foraliasingmodules,e.g., importnumpy as nplen() – To getthe length ofa list, string,etc.Docstring – Astring literal fordocumentation,e.g.Logicaloperators –Such asand, or, not.List creation– E.g.,my_list = [1,2, 3]print("Hello,world!") –The classicoutputcommand.Set creation– E.g.,my_set ={1, 2, 3}

CODE VS ANIMATION - 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
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  1. break – Exits a loop early.
  2. try/except block – For handling errors.
  3. List comprehension – E.g., [x for x in range(10)]
  4. f-string – For formatted strings, e.g., f"Hello, {name}"
  5. range() – E.g., range(10) to generate sequences.
  6. Arithmetic operators – Such as +, -, *, /.
  7. continue – Skips to the next iteration of a loop.
  8. input() – For getting user input.
  9. while loop – Repeats as long as a condition is true.
  10. from ... import ... – E.g., from math import pi
  11. return – Exits a function and optionally returns a value.
  12. Dictionary creation – E.g., my_dict = {"key": "value"}
  13. for loop – For example: for i in range(5):
  14. Variable assignment – E.g., x = 10
  15. else – The fallback branch for conditionals.
  16. def – Used to define a function.
  17. lambda – Anonymous functions, e.g., lambda x: x * 2
  18. Comparison operators – Such as ==, !=, <, >.
  19. elif – Used for additional conditional checks.
  20. Tuple creation – E.g., my_tuple = (1, 2, 3)
  21. import – Importing modules, e.g., import math
  22. if – The basic conditional statement.
  23. type() – To check the data type, e.g., type(x)
  24. as – For aliasing modules, e.g., import numpy as np
  25. len() – To get the length of a list, string, etc.
  26. Docstring – A string literal for documentation, e.g.
  27. Logical operators – Such as and, or, not.
  28. List creation – E.g., my_list = [1, 2, 3]
  29. print("Hello, world!") – The classic output command.
  30. Set creation – E.g., my_set = {1, 2, 3}