当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Streamlit st.columns用法及代码示例


插入布局为 side-by-side 列的容器。

插入多个布局 side-by-side 的多元素容器并返回容器对象列表。

要将元素添加到返回的容器中,您可以使用 "with" 表示法(首选)或直接在返回的对象上调用方法。请参阅下面的示例。

警告

目前,您不能将列放在另一列中。

函数签名

st.columns(spec)
参数说明

spec (int or list of numbers)

如果int
指定要插入的列数,并且所有列的宽度相等。
如果一个数字列表

为每个数字创建一列,每列的宽度与提供的数字成比例。数字可以是整数或浮点数,但它们必须是正数。

例如,st.columns([3, 1, 2]) 创建 3 列,其中第一列是第二列宽度的 3 倍,最后一列是该宽度的 2 倍。

返回说明

(list of containers)

容器对象的列表。

例子

您可以使用 with 表示法将任何元素插入列中:

col1, col2, col3 = st.columns(3)

with col1:
    st.header("A cat")
    st.image("https://static.streamlit.io/examples/cat.jpg")

with col2:
    st.header("A dog")
    st.image("https://static.streamlit.io/examples/dog.jpg")

with col3:
    st.header("An owl")
    st.image("https://static.streamlit.io/examples/owl.jpg")

或者您可以直接在返回的对象中调用方法:

col1, col2 = st.columns([3, 1])
data = np.random.randn(10, 1)

col1.subheader("A wide column with a chart")
col1.line_chart(data)

col2.subheader("A narrow column with the data")
col2.write(data)

相关用法


注:本文由纯净天空筛选整理自streamlit.io大神的英文原创作品 st.columns。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。