Data types
Conditionals
General Python Q's
Math...
Follow That Variable
100

The following code has a type of ______.

int("5")

What is Integer?

100

The output of the below code is ___.

if(True):

print("Hello")

else:

print("World")

What is "Hello"?

100

The act of finding and fixing errors in code.

What is debugging?

100

This type of number has decimal values.

What is Float?

100

The type of z.

x = 1.5

y = "Hello"

z = int(2 + x)


What is Integer?
200

y = "Hello World"

y is type ___.

What is String?

200

I often appear after "if" and "elif" in python.

What is "else"?

200

The symbol to comment in a line in Python.

What is "#"?

200

The value AND type of n.

n = 15.5 * 2

What is 31.0, float?

200

The value of y is ___.

y = 5

z = 3

y = z + y

What is 8?

300

x = 5

y = "5" 

x = y

x is type ___.

What is String?

300

The output of the below code is ___.

if((8 < 5) and (5 > 6)):

   print("Hello")

else:

   print("World")

What is "World"?

300

The ending of a file that python is written in.

What is ".py"?

300
The value of z.

z = 15 // 2

What is 7?

300

The output of the below code is ___.

woodchuck = "chuck"

print("How much would a wood" + woodchuck + " " + woodchuck + " if a woodchuck could " + woodchuck * 2 + " wood")

What is "How much would a woodchuck chuck if a woodchuck could chuckchuck wood"?

400

The following code has a type of ______.

8 > 4

What is Boolean?

400

The following code outputs ___.

x = 5.0

y = 6

z = "Jeopardy 1"

z = 5 + 1.1

if z < x:

   print("I don't know")

elif z < y:

   print("Sure I do")

else:

   print("Nobody knows")  

What is "Nobody knows"?

400

The television show that gave python its name?

What is Monty Python's Flying Circus?

400

The value of K.

K = 15 % 3

What is 0?

400

The value of x is ___.

x = "Nicholas" * 2 + "M"  * 1

What is "NicholasNicholasM"

500

The following code has a type of ___.

[8 // 4 / 2 + 14.0]

What is List?

500

The following code outputs ___.

x = 79.99

if x > 90:

   print("A")

elif x > 79.5:

   print("B")

elif x > 69.5:

   print("C")

elif x > 59.5:

   print("D")  

else:

   print(":(")

What is "B"?

500

What we would call "Visual Studio" in our class.

What is an IDE?

500

The value of kanye?

kanye = 15 / 2 % 3

What is 1.5?

500

The value of r_doge is ___?

r_doge = "fun"

doge = "coda"

mulvihill = "Don't lie"

koda = "doge"

mulvihill = koda + " coda"

koda = "meh"

r_doge = mulvihill + " " + koda

What is "doge coda meh"?