Datatypes
Operations
100

The thing that must surround any line of text in order for it to become a string

What are quotation marks?

100

The symbol for multiplication in Python

What is *?

200

The difference between ints and floats

What are decimals?

200

The symbol for raising a number to any power

What is **?

300

The basic definition of booleans

What is True or False?

300

The result of 2**2/2

What is 2?

400

The function used to show the total number of characters (including spaces) in a string

What is len()?

400

The purpose of the % sign in Python

What is finding the remainder?

500

The structure of string concatenation

What is string - variable - string ... ?

500

What is += and -= equivalent to?

x = x + some number

x = x - some number