atoti.Table.row_count# property Table.row_count: int# The number of rows in the table. Example >>> table = session.create_table( ... "Example", ... types={"Product": "String", "Quantity": "int"}, ... ) >>> table.row_count 0 >>> table += ("Book", 3) >>> table.row_count 1