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

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