I have scrubbed the polars docs and cannot see an example of creating a column with a fixed value from a variable. Here is what works in pandas:
df['VERSION'] = versionThx
1 Answer
Use polars.lit
import polars as pl
version = 6
df.with_column(pl.lit(version).alias('VERSION')) 2