> For the complete documentation index, see [llms.txt](https://tvn.gitbook.io/test-automation-with-python/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tvn.gitbook.io/test-automation-with-python/python-for-test-automation/function.md).

# Function

```python
def calculate_sum(numbers):
    """
    Calculate the sum of a list of numbers.

    Args:
        numbers (list): A list of numbers to calculate the sum of.

    Returns:
        float: The sum of the numbers in the list.
    """
    total = 0
    for num in numbers:
        total += num
    return total

```

```python
# *args function
def print_args(*args):
    """
    Print all the arguments passed to the function.

    Args:
        *args: A variable-length argument list.
    """
    for arg in args:
        print(arg)

# **kwargs function
def print_kwargs(**kwargs):
    """
    Print all the keyword arguments passed to the function.

    Args:
        **kwargs: A variable-length keyword argument list.
    """
    for key, value in kwargs.items():
        print(key + " = " + str(value))

```

```python
# Lambda function to add two numbers
add_numbers = lambda x, y: x + y

# Call lambda function
result = add_numbers(3, 5)
print(result)  # Output: 8
pyth
```

```python
def greet(name="World"):
    """
    Print a greeting message.

    Args:
        name (str): The name to greet. Default is "World".
    """
    print("Hello, " + name + "!")

# Call function with default parameter value
greet()  # Output: Hello, World!

# Call function with a specific parameter value
greet("John")  # Output: Hello, John!
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://tvn.gitbook.io/test-automation-with-python/python-for-test-automation/function.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
