Answers for "create columns in streamlit"

0

create columns in streamlit

import streamlit as st

NUMBER_OF_COLUMNS = 2
first_column, second_column = st.columns(NUMBER_OF_COLUMNS)

first_column.text("This will go in FIRST column")
second_column.text("This will go in SECOND column")
Posted by: Guest on February-15-2022

Python Answers by Framework

Browse Popular Code Answers by Language