### **Python Functions Assignment**
#### **Objective:**
To practice creating and using functions in Python to perform a variety of tasks.
---
### **Task 1: Greet the User**
Write a function called `greet_user` that takes a user's name as an argument and prints a
greeting message.
**Example:**
### **Task 2: Calculate the Area of a Rectangle**
Create a function called `calculate_area` that takes two arguments, `length` and `width`, and
returns the area of a rectangle.
**Example:**
---
### **Task 3: Check if a Number is Even or Odd**
Write a function named `is_even` that takes a single integer as an argument and returns `True`
if the number is even, and `False` if it’s odd.
**Example:**
---
### **Task 4: Convert Temperature from Celsius to Fahrenheit**
Create a function called `celsius_to_fahrenheit` that converts a temperature given in Celsius to
Fahrenheit. The formula is:
\[ \text{Fahrenheit} = \left(\text{Celsius} \times \frac{9}{5}\right) + 32 \]
**Example:**
---
### **Task 5: Find the Largest Number in a List**
Write a function named `find_largest` that takes a list of numbers and returns the largest
number.
**Example:**
---
### **Task 6: Print a Multiplication Table**
Create a function called `print_table` that takes a number as an argument and prints the
multiplication table for that number up to 10.
**Example:**
---
### **Task 7: Simple Calculator**
Expand on the calculator task by creating a function `simple_calculator` that can handle
addition, subtraction, multiplication, and division as in the previous task.
---
### **Instructions:**
1. **Define each function** according to the task description.
2. **Test your functions** with different inputs to ensure they work correctly.
3. **Comment your code** to explain what each part does.
4. **Submit your assignment** with all functions in a single Python file.
---