> ## Documentation Index
> Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
> Use this file to discover all available pages before exploring further.

# atoti.Table.row_count

#### *property* Table.row\_count *: [int](https://docs.python.org/3/library/functions.html#int)*

The number of rows in the table.

### Example

```pycon theme={"languages":{"custom":["/engine/python-sdk/0.9/languages/pycon.tmLanguage.json"]}}
>>> table = session.create_table(
...     "Example",
...     data_types={"Product": "String", "Quantity": "int"},
... )
>>> table.row_count
0
>>> table += ("Book", 3)
>>> table.row_count
1
```
