Sandbox — LSD is in active testing. All systems operational·payments are test-mode (no real charges).
Overview Use Cases News Docs Tool Store Support Community Get LSD
All docs
Docs/ API Reference/ Table/ columns
Table· property

Table.columns

the list of column names, in order

Python
columns: list[str]

Returns list[str] — the column names, in order

Example#

Python
t.columns               # ['name', 'score']
"score" in t            # True — membership tests a column name
len(t)                  # row count

Notes#

columns is a plain list[str], in schema order. To test whether a column exists, use name in table; for the full types use schema.

See also#

API: schema · select · drop

Guides: Tables & data flow

By LSD Team · Last updated Jul 17, 2026 Ask on Discord View as Markdown