> For the complete documentation index, see [llms.txt](https://docs.pylenium.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.pylenium.io/elements-commands/is_empty.md).

# is\_empty

## Syntax

```python
Elements.is_empty() -> bool
```

## Usage

{% code title="correct usage" %}

```python
py.find("a.hidden-link").is_empty()
```

{% endcode %}

{% code title="incorrect usage" %}

```python
# Errors, 'Element' is not a list
py.get("a").is_empty()
```

{% endcode %}

## Arguments

* None

## Yields

* **bool** - True if the length is zero, else False
