# Table Creation

## Input Concepts

| Concept        | Type   | Description                                                                       | Default | Required |
| -------------- | ------ | --------------------------------------------------------------------------------- | ------- | -------- |
| `column names` | list   | The column names for the table. If not specified, an empty table will be created. | Empty   | No       |
| `row count`    | number | Number of empty rows to create in the table.                                      | 0       | No       |

## Output Concepts

| Concept | Description                                                                                      |
| ------- | ------------------------------------------------------------------------------------------------ |
| `table` | The created table with specified column names or an empty table if no column names are provided. |

## Examples

### 1. Basic Table Creation

{% tabs %}
{% tab title="Automation" %}

```
create a table
```

{% endtab %}

{% tab title="Results" %}
Table (empty)
{% endtab %}
{% endtabs %}

### 2. Specifying Column Names and Row Count

{% tabs %}
{% tab title="Automation" %}

```
create a table where
    the column names are "USA", "Japan", "Egypt"
    the row count is 3
```

{% endtab %}

{% tab title="Results" %}

| USA           | Japan | Egypt |
| ------------- | ----- | ----- |
|               |       |       |
|               |       |       |
|               |       |       |
| {% endtab %}  |       |       |
| {% endtabs %} |       |       |
