Basic Math
Variables
Flow Control
General Python
String Operations
100

The // operation

What is floor division?

100
This common variable type stores letters, numbers, and symbols.
What is a string?
100
This often used statement checks the validity of a statement before creating a branch.
What is an 'if' statement?
100
To comment a line in Python, you use this/these character(s).
What is a pound sign (#) ?
100
This operator "glues" two strings together.
What is the concatenation (+) operator?
200
These characters have the highest order of operation in Python.
What are parenthesis?
200
This variable type stores decimal numbers.
What is a float?
200

Boolean values

What are True and False?

200
A sequence of characters

What is a string?

200
Identify the letter printed from these lines of code: words = "GIS Rules!" print words[4]
What is 'R'?
300

The result of 9%5

What is 4?

300

This function asks the user for input

What is input()?
300

This statement checks against another condition after an if statement

What is elif?

300

This operation is used for both numbers and strings

What is +?

300
Identify the letters printed from these lines of code: words = "GIS Rules!" print words[:-1]
What is 'GIS Rules'?
400

This function determines whether a string contains a numerical value

What is isdigit()?

400
Data stored as a string is surrounded by these.
What are quotes?
400

These statements allow you to test many conditions using cases

What are match cases?

400
Python will warn on a logic error, but it will warn (and possibly error) on this type of error.
What is a syntax error?
400
This function returns a string with leading and trailing white spaces removed.
What is strip()?
500

This function converts an integer to a decimal point number

What is float()?

500
To determine the variable type of a variable, you would use this function.
What is type()?
500

This structure repeats a line or lines of code repeatedly until otherwise told

What is a while loop?

500

This built-in Python function returns the length of many objects or sequences

What is len()?

500
This string operator declares that the following character should be literally interpreted.
What is the escape character (\)?
M
e
n
u