Create a Table

Creates an empty table. The column names and number of rows can be optionally specified.

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

create a table

2. Specifying Column Names and Row Count

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

Last updated

Was this helpful?