if/else
for loops
random
list functions
LISTS
100

This statement checks the validity of a condition before creating a separate path for when the condition is true.

what is an if statement?

100

this is the statement within a for loop

what is the body of the loop?

100

Variables of this 'type' are surrounded by quotation mark?

what are strings?

100

This built-in Python function returns the Number of instances a given value is present in the data

what is count()?

100

data structure contains a collection of items referenced under 1 specific variable

What is a list?

200

using this operator returns True if at least one of the given conditions are true.

What is the OR operator?

200

This keyword is used when trying to force stop a loop before it finishes

what is a break statement?

200

User input is automatically displays its message when you create the variable: True or False

True

200

this function is used to add an item to a specific index in the list

what is insert()

200

This function finds the smallest numeric value in a list.

what is min()?

300

When does an else statement run?

when all elif and if statements above it return as False 

300

for x in list1:

print(x)

what does the code do

traverse through list and displays every item in the list

300

Used when seeking information from the user of the program

What is input()?

300

When using these three functions, you put the name of the list inside parameter(parentheses)

What is min max and len? (100pt for each answer)

300

To determine if a variable is not present in some data, you would use this keyword.

What is not in?

400

This statement only runs when all if and elif statements above it returns false.

what is an else statement?

400

To travel through or run through

traverse

400

This functions is used to convert a variable of another type into type string.

What is str()

400

This function is used to replicate the list to be edited.

what is copy()?

400

This function is use to create a set of numbers between a specified start and finish

what is range()?

500

a = ['Lies', 'You', 'Tell']

b = a [2]

what is b?

'Tell'

500

When does an else statement attached to a for loop run?

if the loop has run all the way through without breaking

500

This operator is used when creating a variable and simultaneously adding to the variable

( += ) plus sign and equal sign

500

a =['I', 'Just', 'Want', 'To', 'Be', 'Rich']

b = a [-4]

what is b?

'Want'

500

These are numbers used to refer to a specific item in a list

what are indexes?