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

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