Strings and Things
General
Logic and Loops
Things to Do (Lists)
Operators
100

This can be expressed by surrounding it in either single quotation marks or double quotation marks

What are 'string literals'?

100

What is it called when a variable takes on a value

what is 'assignment'?

100

This statement is used to evaluate a single condition for a single instance

What is 'if'?

100

This is a collection which is ordered and changeable

What is a 'list'?

100

This operator requires both subexpressions to be true for the whole expression to be true

What is 'and'?

200

This common function can be used to display a string

what is 'print'

200

In Python, we index starting with this number

what is '0' or 'zero'?

200

This statement follows an 'if' statement to catch all other conditions

what is 'else'?

200

In Python, lists are written between what type of brackets?

what are 'square brackets'?

200

This operator will be true if either of the subexpressions are true

What is 'or'?

300

This happens to a variable when it takes on a value of a string

What is 'assignment'?

300

You can get the length of a string using this function

what is 'len()'?

300

This statement is used to evaluate another single condition for a single instance after an if statement

what is 'else-if' or 'elif'?

300

You can begin from the end of the list using this type of indexing

What is 'negative indexing'?

300

This operator will invert the value of the expression

What is 'not'?

400

You can use this to assign a multiline string

what are 'triple quotes' or 'three quotes'?

400

You can return a range of characters using this syntax

what is 'slicing'?

400

This statement will continue to loop and evaluate the expression and execute as long as it is true

what is 'while'?

400

You can add items to the end of the list using this function

What is 'append'?

400

This operator will evaluate if both subexpressions are equal

what is '=='?

500

Strings are stored as this data structure

what are 'arrays'?

500

In slicing, the start is inclusive, but the end is...

what is 'exclusive'?

500

This loop will execute based on a counter instead of a condition

what is 'for' or 'for loop'?

500

You can remove an item from the end of the list using this funtion

what is 'pop'?

500

This expression will return what? 

(not True) or (not False)

what is 'true'?