create an app with greetings and seperate the screen into 2 sections
To upload files, please first save the app
import streamlit as st
st.set_page_config(layout='wide')
# Create two columns for the layout
col1, col2 = st.columns(2)
# Add content to the first column
with col1:
st.header('Hello!')
st.write('Welcome to our greeting app!')
# Add content to the second column
with col2:
st.header('Greetings!')
st.write('We are glad to have you here!')
Hi! I can help you with any questions about Streamlit and Python. What would you like to know?