#### Lesson - **Topic**: Arithmetic and comparison operators Similar to functions in Excel, or any programming language, mathematical operators **Resources**: - **RealPython**: [Basic Operators in Python](https://realpython.com/python-operators-expressions/) - **TikTok Video**: [Math Operations in Python](https://www.lizthe.dev/tiktok-python/math-operations) #### Exercise: Perform Basic Arithmetic Calculations ##### Objective - The goal of this exercise is to teach learners how to perform basic arithmetic operations using Python. ##### Instructions 1. **Create Arithmetic Expressions**: Write expressions for addition, subtraction, multiplication, and division. - Addition: `sum = 5 + 3` - Subtraction: `difference = 10 - 4` - Multiplication: `product = 3 * 7` - Division: `quotient = 8 / 2` 2. **Print the Results**: Print the results of the expressions.