Words & Phrases
Problem Solving
What, Where, When
Missing the point
Syntax, Syntax, Syntax
100

A whole number data type (full name)

What is ... integer?

100

5 >=5 

What is...  True

100

3 data types

What is ... floats, ints, lists, booleans, strings, chars

100

What is missing from this line of Code:

________ ("Happy Birthday")

What is ... print?

100

The proper way to write an output statement

What is... print()?

200

A data type with only 2 values

What is ... boolean?

200

list(1,2,3,4,5) can create a list

What is ... False

200

Something used when the same thing happens over and over and stops on a condition

What is ... a while loop?

200

What is missing from this line of Code:

____ element in range(1):

            print(element)

What is... for?

200

Proper way to write a For loop that directly loops through its contents. List is the name of the list.

What is ...

for x in List:
     do something

300

A word that has a specific meaning in a language

What is ... reserved or key word?

300

How many times does the loop happen

x = 2

while x < 100:

        x+=1

print(x)

What is... 98

300

2 Things Used to modify a print statement

What is ... sep and end

300

What is missing from this line of Code:

x = 4

______ x ==5:

        print(x)


What is... while

300

Proper way to write an index For loop. List is the name of the list.

What is ... 

for x in range(len(List)):
    do something 

400

Most likely the most used keyword in python

What is ... print?

400

Things = list((1,"Hi",34,54,"Y"))

for elements in range(len(Things)):

          print(elements)

What is... 0,1,2,3,4

400

A function that returns a list of numbers

What is ... range()?

400

What is missing from this line of Code:

def Multipy3Nums(m1,m2,m3):
       print(____*m1*m2)

What is... m3

400

Proper way to write a while loop

what is ... 

while condition:
     do something

     change condition

500

A group of code that is used for a specific purpose, and can request for information.

What is ... a function or method?

500

Things = [1,0,3,2,5,4,7,9]

x = 0

while x < len(Things):
        print(Things[x])

        x += 3

What is ... 1,2,7

500

The location that the keyword return is used in

What is ... inside of a function

500

What is missing from this line of Code:

x = input("Input a float")

print(x + 12.231)

What is ... float(input("Input a float"))

500

Simplest way to take in a number from the user

What is... int(input())?