Data Types
Operators
If-Else
Functionality
List Maniulation
100
What is the data type: "Hello"

String

100

What does the "==" operator do

Checks for equality

100

True or False, an If-Else clause does not always need an Elif

True


100

What do booleans do

help make desicions and check for equality

100

What operator do I need to use to add elements to the end of a list?

append()
200

Can I combine "Hello" and "World"?

Yes

200

What is the output:

(2+3>1) or ("Dog" == "Cat")

True

200

What does indentation do in If-Else clauses?

Separate clauses

200

True or False: I can take elements in and out of lists

True, with List manipulation operators/functions

200

What operator do I need to use to add elements to specific indexes

insert()

300

What operator is used to fuse Strings?

The "+" Operator

300

What is the output: 3+"Hello"

Output: Error

300

What do If-Else statements use to make decisions? (What are the parameters?)

Booleans

300

True or False: numbers given as strings can be used as calculations

False

300

What key does the reverse operator need to be used?

the boolean value of True
400

What is the output: 

a=2

type(a)

Integer

400

What operator is ed to set variables?

The "=" operator

400

True or False: You always need a condition for Else

False

400

How do I convert the string "67" into an integer?

int("67")

400

What operator do I need to use to completely clear a list?

clear()

500

What category do Strings and Lists fall under?

Sequential Data Types

500
What is the output: 12%3

The answer is 0

500

Describe the format of an If-Else clause

if condition:

        return output

500
If a list contains no elements, can the list still exist?

Yes, it will just be []

500

a=["Cat", "Dog", "Fly", "Eagle"]

a.sort()

What will be at index 2?

Eagle

M
e
n
u