> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/callable/callable.arguments.md).

# Callable.arguments()

`arguments() →` [`ArgumentPoints`](/glider-ide/api/point/argumentpoints.md)

## Example

```python
from glider import *

def query():
    functions = Functions().exec(1,4)

    for func in functions:
        for arg in func.arguments().list():
            print(f"Function name: {func.name}, Argument: {arg.source_code()}")

    return functions

```

## Example output

<figure><img src="/files/n6nxz2BvOmAT5kV9PrEq" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
The function returns ArgumentPoints, instead of APIList, in case the result of the function is used as the return value of the query it must be casted to `list()`
{% endhint %}
