> 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()

Returns an Arguments object for the arguments of the function/modifier.

`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="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FyToMtkBijL6Cg8Syjo6s%2Fimage.png?alt=media&amp;token=4767e51e-c7cd-431d-8257-517e651435f9" 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 %}
