Plenty of π
Module 2: Python Basics - Data Types, Variables, I/O, and Operators
Quiz: Quiz 2: Python Basics, Data Types, and Operators

1. What is the data type of the value `42` in Python?

2. What is the result of the expression `int("5") + float("2.5")`?

3. When `input()` is used in a standard Python terminal, what data type does it return?

4. Which operator is used for exponentiation (raising a number to a power) in Python?

5. How do you write a single-line comment in Python?

6. True or False: Variable names in Python can start with a number.