在哪里可以找到我可以转换为 polars 的数据类型?

Where can I find datatypes to which I can cast in polars?

在哪里可以找到我可以转换成 polars 的数据类型?

这是我第二次搜索这个,我找不到合适的参考资料。 User's Guide, but it is not mentioned how to call those types. Also there is no mentioning of the data types in the Python Documentation.

中有类型

您在用户指南中阅读的所有类型都可以在 polars 命名空间下找到。所以:

import polars as pl

# available data types
pl.Int8
pl.Int16
pl.Int32
pl.Int64
pl.UInt8
pl.UInt16
pl.UInt32
pl.UInt64
pl.Float32
pl.Float64
pl.Boolean
pl.Utf8
pl.List
pl.Date
pl.Datetime
pl.Duration
pl.Time
pl.Struct
pl.Object