Python 1
Python 2
Python 3
Python 4
Python 5
100

What do you call an expression that is either true or false?

What is Boolean?

100

A chunk of code that repeats a certain number of times.

What is a loop?

100

x = 2.15. What type of variable is this?

What is a float?

100

What function would you use to determine the length of a list?

What is the len() function?

100

How many times would this run? 

for i in range(0,3)?

What is 3 times?

200

x = 7. What type of variable is this?

What is an integer?

200
When function's name appears in the main code

What is an function call /function execution?

200
What are the three different sections that you can have in an if-else statement?

What are if, elif, and else?

200

What is this section of code?

For i in range(0,3):

What is 

200

The variable listed inside the parentheses in the function definition

What is a parameter?

300

What is a variable that can be used anywhere inside your program? Not just within a specific function.

What is a global variable?

300

How is accessing functions from an imported module different from using the built-in functions?

What is using the dot notation?

300

Name 3 different types of conditions that can be used in while loops.

What is greater than, less than, or equal to?

300

What is the name of the function that allows you to get information from the user?

What is the input() function?

300

Name the three symbols for addition, subtraction and multiplication in python.

What is a +, -, *?

400

A block of code that allows you to execute specific blocks of code based on whether a condition is true or false

What is conditional statements?

400

These two operators are executed Right-to-Left

What is ** and =?

400

What will this section of code print out?

for i in range(0,3):

     print("Hello World")


What is the 

Hello World

Hello World

Hello World

?

400

This line of code allows you to insert multiple different values into one variable.

What is a list?

400

This operator finds the remainder

What is % operator?

500

A section of code that can be reused multiple times.

What is a function?

500

This section of code runs until a statement is false.

What is a while loop?

500

User input is always of ________ data type


String

500

What functions allows you to edit a list?

What is append()?

500

This data type allows you to store numbers with decimal places?

What is a float?

M
e
n
u