st.empty - 添加占位符
streamlit的empty
方法为应用添加一个占位符。
可以调用返回值的方法来填充占位符。
方法原型
streamlit.empty()
示例代码
>>> my_placeholder = st.empty()
>>>
>>> # Now replace the placeholder with some text:
>>> my_placeholder.text("Hello world!")
>>>
>>> # And replace the text with an image:
>>> my_placeholder.image(my_image_bytes)