(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
What is an example of a program, app, or website that you use that compares values in some way?
Bonus free!
What are the 3 logical operators?
If the variable a is True, what is the value of not a
In Python, how are the logical operators written? Lowercase or uppercase?
Logical statement example: “I go to sleep” Is true if I am tired or it is after 9pm.
Now write your own statement using the or logical operator
Logical statement example: “I wear flip flops” Is true if I am outside AND it is NOT raining
Now write your own statement using the ans logical operator
Write this statement in code
using the comparison operators.
“hello” is equal to “hello
Write this statements in code
using the comparison operators.
9 is greater than 10
Write this statement in code
using the comparison operators.
1.7 is not equal to 1
If the variable a is True and b is False, what is the value of a or b?
What is a boolean variable? What values can it hold?
In the AP CSP exam reference sheet, what is the operator used for not equal to.
What are the values Python uses for “true” and “false”?
Create a boolean variable that stores whether it is raining or not. What name would you give it? What value would you assign to it if it is raining?
If the variable a is True and b is False, what is the value of a and b?