Data Types
Errors
Expressions
Built-in Functions and Strings
Keywords
100

This data type is used to represent text.

What is strings?

100

The error when a stated fact is not True.

What is AssertionError?

100

The answer to 5 + -8.

What is -3.

100

This built-in function displays an output to the console/prompt/terminal/screen.

What is print()?

100

The keyword for whole numbers.

What is int?

200

This data type represents whole numbers.

What is integers?

200

The error that is raised from this computation: "apple" / 3.

What is TypeError?

200

The answer to 19 // 4.

What is 4?

200

This built in function takes a user's input and assigns it to a variable.

What is input()?

200

The keyword for text.

What is str?

300

This data type represents decimals and fractions.

What is float?

300

The error that is raised when you write incorrect Python.

What is SyntaxError?

300

If 'num' is some integer, the expression to determine if 'num' is even/odd. 

What is num % 2?

300

The two characters that are used when creating a string.

What is ' and "?

300

The key word for binary True/False.

What is bool?

400

This data type represents either True or False.

What is a boolean?

400

The error that is raised when you use a variable you did not define.

What is NameError?

400

The result of ("happy" * 5) + "birthday".

What is happyhappyhappyhappyhappybirthday?

400

The formatting method that uses a % sign along with specifiers to substitute variables into strings.


"My name is %s" % (name)

What is C-Style Formatting?

400

The key word for decimals and fractions.

What is float?

500

This data type represents emptiness or void of type.

What is None?

500

The error that is raised from this computation. 10 / 0.

What is ZeroDivisionError?

500

The result of 38.5 % (15 // 7)

What is 0.5?

500

The formatting method that uses brackets to substitute variables into strings.


f"My name is {name}"

What is F-Strings?

500

The keyword for empty or null.

What is None?