A whole number data type (full name)
What is ... integer?
5 >=5
What is... True
3 data types
What is ... floats, ints, lists, booleans, strings, chars
What is missing from this line of Code:
________ ("Happy Birthday")
What is ... print?
The proper way to write an output statement
What is... print()?
A data type with only 2 values
What is ... boolean?
list(1,2,3,4,5) can create a list
What is ... False
Something used when the same thing happens over and over and stops on a condition
What is ... a while loop?
What is missing from this line of Code:
____ element in range(1):
print(element)
What is... for?
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
A word that has a specific meaning in a language
What is ... reserved or key word?
How many times does the loop happen
x = 2
while x < 100:
x+=1
print(x)
What is... 98
2 Things Used to modify a print statement
What is ... sep and end
What is missing from this line of Code:
x = 4
______ x ==5:
print(x)
What is... while
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
Most likely the most used keyword in python
What is ... print?
Things = list((1,"Hi",34,54,"Y"))
for elements in range(len(Things)):
print(elements)
What is... 0,1,2,3,4
A function that returns a list of numbers
What is ... range()?
What is missing from this line of Code:
def Multipy3Nums(m1,m2,m3):
print(____*m1*m2)
What is... m3
Proper way to write a while loop
what is ...
while condition:
do something
change condition
A group of code that is used for a specific purpose, and can request for information.
What is ... a function or method?
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
The location that the keyword return is used in
What is ... inside of a function
What is missing from this line of Code:
x = input("Input a float")
print(x + 12.231)
What is ... float(input("Input a float"))
Simplest way to take in a number from the user
What is... int(input())?