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")
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")
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us